54 lines
1.3 KiB
Vue
54 lines
1.3 KiB
Vue
<template>
|
|
<v-chart ref="vChartRef" :theme="themeColor" :option="option" :manual-update="isPreview()" autoresize></v-chart>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, PropType } from 'vue'
|
|
import VChart from 'vue-echarts'
|
|
import { use } from 'echarts/core'
|
|
import { CanvasRenderer } from 'echarts/renderers'
|
|
import { BarChart } from 'echarts/charts'
|
|
import { includes } from './config'
|
|
import { mergeTheme } from '@/packages/public/chart'
|
|
import { useChartDataFetch } from '@/hooks'
|
|
import { CreateComponentType } from '@/packages/index.d'
|
|
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
|
import { isPreview } from '@/utils'
|
|
import {
|
|
DatasetComponent,
|
|
GridComponent,
|
|
TooltipComponent,
|
|
LegendComponent
|
|
} from 'echarts/components'
|
|
|
|
const props = defineProps({
|
|
themeSetting: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
themeColor: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
chartConfig: {
|
|
type: Object as PropType<CreateComponentType>,
|
|
required: true
|
|
}
|
|
})
|
|
|
|
use([
|
|
DatasetComponent,
|
|
CanvasRenderer,
|
|
BarChart,
|
|
GridComponent,
|
|
TooltipComponent,
|
|
LegendComponent
|
|
])
|
|
|
|
const option = computed(() => {
|
|
return mergeTheme(props.chartConfig.option, props.themeSetting, includes)
|
|
})
|
|
|
|
const { vChartRef } = useChartDataFetch(props.chartConfig, useChartEditStore)
|
|
</script>
|