diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/table/TableTotalSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/table/TableTotalSelector.vue index 1aba7802ad..6f28044ede 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/table/TableTotalSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/table/TableTotalSelector.vue @@ -24,7 +24,12 @@ const props = defineProps({ } }) watch( - [() => props.chart.customAttr.tableTotal, () => props.chart.xAxis, () => props.chart.yAxis], + [ + () => props.chart.customAttr.tableTotal, + () => props.chart.xAxis, + () => props.chart.yAxis, + () => props.chart.customAttr.basicStyle + ], () => { init() },