diff --git a/src/components/Echart/src/Echart.vue b/src/components/Echart/src/Echart.vue index ff53cb9c..41fde039 100644 --- a/src/components/Echart/src/Echart.vue +++ b/src/components/Echart/src/Echart.vue @@ -27,7 +27,7 @@ const props = defineProps({ const isDark = computed(() => appStore.getIsDark) const theme = computed(() => { - const echartTheme: boolean | string = unref(isDark) ? true : 'inherit' + const echartTheme: boolean | string = unref(isDark) ? true : 'auto' return echartTheme })