From 7329b819a421c18a6b12ee5675f71dfbff9a3019 Mon Sep 17 00:00:00 2001 From: junjie Date: Tue, 23 Nov 2021 16:54:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E8=A7=86=E5=9B=BE):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=9B=BE=E8=A1=A8=E7=B1=BB=E5=9E=8B=E5=88=87=E6=8D=A2=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/chart/view/ChartEdit.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/views/chart/view/ChartEdit.vue b/frontend/src/views/chart/view/ChartEdit.vue index de65a9924e..e3a775d216 100644 --- a/frontend/src/views/chart/view/ChartEdit.vue +++ b/frontend/src/views/chart/view/ChartEdit.vue @@ -993,6 +993,7 @@ export default { view.type.startsWith('gauge') || view.type === 'treemap' || view.type === 'liquid' || + view.type === 'word-cloud' || view.type === 'waterfall') { if (view.yaxis.length > 1) { view.yaxis.splice(1, view.yaxis.length) @@ -1001,6 +1002,9 @@ export default { if (view.type === 'line-stack' && trigger === 'chart') { view.customAttr.size.lineArea = true } + if (view.type === 'line' && trigger === 'chart') { + view.customAttr.size.lineArea = false + } if (view.type === 'treemap' && trigger === 'chart') { view.customAttr.label.show = true }