From 078fce322a94ecf703e9e0deb585112c8c14f1fa Mon Sep 17 00:00:00 2001 From: wisonic-s Date: Tue, 2 Jan 2024 15:56:20 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E8=A7=86=E5=9B=BE):=20=E9=9A=90=E8=97=8F?= =?UTF-8?q?=20Echarts=20=E8=A7=86=E5=9B=BE=E6=97=A0=E7=94=A8=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/frontend/src/views/chart/view/ChartEdit.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/frontend/src/views/chart/view/ChartEdit.vue b/core/frontend/src/views/chart/view/ChartEdit.vue index 1d947c2e5f..ec9e92290d 100644 --- a/core/frontend/src/views/chart/view/ChartEdit.vue +++ b/core/frontend/src/views/chart/view/ChartEdit.vue @@ -2114,7 +2114,8 @@ export default { equalsAny(this.view.type, 'table-normal', 'table-info', 'map', 'text') || this.view.render === 'echarts' && includesAny(this.view.type, 'mix') }, showFunctionCfg() { - return includesAny(this.view.type, 'bar', 'line', 'area', 'mix', 'table') || + return includesAny(this.view.type, 'bar', 'line', 'area', 'mix') || + (this.view.render === 'antv' && this.view.type.includes('table')) || equalsAny(this.view.type, 'map', 'text') }, showScrollCfg() {