From f1a467ec3edb62cbdb19734d6de47c3525fa1ab1 Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Tue, 8 Oct 2024 17:29:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=9B=BE=E8=A1=A8):=20=E7=AC=A6=E5=8F=B7?= =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E6=94=AF=E6=8C=81=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E6=B0=94=E6=B3=A1=E5=A4=A7=E5=B0=8F=E5=8C=BA=E9=97=B4=20#12432?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/models/chart/chart-attr.d.ts | 8 ++++ .../components/BasicStyleSelector.vue | 48 ++++++++++++++++++- .../chart/components/editor/util/chart.ts | 4 +- .../js/panel/charts/map/symbolic-map.ts | 19 ++++++-- 4 files changed, 72 insertions(+), 7 deletions(-) diff --git a/core/core-frontend/src/models/chart/chart-attr.d.ts b/core/core-frontend/src/models/chart/chart-attr.d.ts index d438f5d986..42483f0e3c 100644 --- a/core/core-frontend/src/models/chart/chart-attr.d.ts +++ b/core/core-frontend/src/models/chart/chart-attr.d.ts @@ -281,6 +281,14 @@ declare interface ChartBasicStyle { * 汇总表总计标签 */ summaryLabel: string + /** + * 符号地图符号大小最小值 + */ + mapSymbolSizeMin: number + /** + * 符号地图符号大小最大值 + */ + mapSymbolSizeMax: number } /** * 表头属性 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 3915f499b7..9c50a9278b 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 @@ -1,5 +1,5 @@