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() {