From 7549bc66d74e5512781d0d215b2b62589b1aa415 Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Wed, 27 Nov 2024 17:28:55 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E9=9B=B7=E8=BE=BE?= =?UTF-8?q?=E5=9B=BE=E9=83=A8=E5=88=86=E5=9F=BA=E7=A1=80=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E9=A1=B9=E6=9C=AA=E8=BF=9B=E8=A1=8C=E4=B8=93=E5=B1=9E=E5=88=A4?= =?UTF-8?q?=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../editor-style/components/BasicStyleSelector.vue | 13 +++++++++++-- .../components/js/panel/charts/others/radar.ts | 12 ++++++++++-- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/BasicStyleSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/BasicStyleSelector.vue index 458e5e2a37..9d659658f8 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/BasicStyleSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/BasicStyleSelector.vue @@ -1278,7 +1278,11 @@ onMounted(() => { {{ t('chart.circle') }} - + { class="form-item margin-bottom-8" :class="'form-item-' + themes" :label="t('chart.radar_point_size')" + v-if="showProperty('radarPointSize')" > { @change="changeBasicStyle('radarPointSize')" /> - + { 'linkage' ] propertyInner: EditorPropertyInner = { - 'basic-style-selector': ['colors', 'alpha', 'radarShape', 'seriesColor'], + 'basic-style-selector': [ + 'colors', + 'alpha', + 'radarShape', + 'seriesColor', + 'radarShowPoint', + 'radarPointSize', + 'radarAreaColor' + ], 'label-selector': ['seriesLabelFormatter'], 'tooltip-selector': ['color', 'fontSize', 'backgroundColor', 'seriesTooltipFormatter', 'show'], 'misc-style-selector': ['showName', 'color', 'fontSize', 'axisColor', 'axisValue'],