+
+
+
+
+
+ {{ t('chart.axis_auto') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -145,4 +236,17 @@ onMounted(() => {
.form-item-checkbox {
margin-bottom: 0 !important;
}
+.custom-form-item-label {
+ margin-bottom: 4px;
+ line-height: 20px;
+ color: #646a73;
+ font-size: 12px;
+ font-style: normal;
+ font-weight: 400;
+ padding: 2px 12px 0 0;
+
+ &.custom-form-item-label--dark {
+ color: #a6a6a6;
+ }
+}
diff --git a/core/core-frontend/src/views/chart/components/editor/util/chart.ts b/core/core-frontend/src/views/chart/components/editor/util/chart.ts
index 650bb1058e..f1fe0469d2 100644
--- a/core/core-frontend/src/views/chart/components/editor/util/chart.ts
+++ b/core/core-frontend/src/views/chart/components/editor/util/chart.ts
@@ -731,6 +731,13 @@ export const DEFAULT_MISC_STYLE: ChartMiscStyle = {
},
splitArea: {
show: true
+ },
+ axisValue: {
+ auto: true,
+ min: 10,
+ max: 100,
+ split: 10,
+ splitCount: 10
}
}
export const DEFAULT_FUNCTION_CFG: ChartFunctionCfg = {
diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/others/radar.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/others/radar.ts
index 097c97d8e4..3e2571bc42 100644
--- a/core/core-frontend/src/views/chart/components/js/panel/charts/others/radar.ts
+++ b/core/core-frontend/src/views/chart/components/js/panel/charts/others/radar.ts
@@ -27,7 +27,7 @@ export class Radar extends G2PlotChartView