2026-07-10 16:44:49 +08:00
|
|
|
/**
|
2026-07-16 11:03:54 +08:00
|
|
|
* 服务看板图表按需注册。
|
2026-07-10 16:44:49 +08:00
|
|
|
*/
|
|
|
|
|
import { use } from 'echarts/core'
|
|
|
|
|
import { CanvasRenderer } from 'echarts/renderers'
|
2026-07-16 11:03:54 +08:00
|
|
|
import { BarChart, PieChart } from 'echarts/charts'
|
2026-07-10 16:44:49 +08:00
|
|
|
import {
|
|
|
|
|
GridComponent,
|
|
|
|
|
TooltipComponent,
|
|
|
|
|
LegendComponent,
|
|
|
|
|
} from 'echarts/components'
|
|
|
|
|
|
|
|
|
|
use([
|
|
|
|
|
CanvasRenderer,
|
2026-07-11 14:49:37 +08:00
|
|
|
BarChart,
|
2026-07-14 16:10:59 +08:00
|
|
|
PieChart,
|
2026-07-10 16:44:49 +08:00
|
|
|
GridComponent,
|
|
|
|
|
TooltipComponent,
|
|
|
|
|
LegendComponent,
|
|
|
|
|
])
|