diff --git a/core/core-frontend/src/views/chart/components/views/index.vue b/core/core-frontend/src/views/chart/components/views/index.vue index d8d39b3715..d37a946b57 100644 --- a/core/core-frontend/src/views/chart/components/views/index.vue +++ b/core/core-frontend/src/views/chart/components/views/index.vue @@ -801,6 +801,13 @@ onMounted(() => { initTitle() const viewInfo = val ? val : view.value nextTick(() => { + if (view.value?.plugin?.isPlugin) { + chartComponent?.value?.invokeMethod({ + methodName: 'renderChart', + args: [viewInfo] + }) + return + } chartComponent?.value?.renderChart?.(viewInfo) }) }