Sanakey
2024-08-21 7b684b71e37e765d8047b30d53691dd88bd70000
提交 | 用户 | age
370b12 1 import * as echarts from 'echarts/core';
V 2
8a1406 3 import {
V 4   BarChart,
5   LineChart,
6   PieChart,
7   MapChart,
8   PictorialBarChart,
9   RadarChart,
c3b5ab 10   ScatterChart,
8a1406 11 } from 'echarts/charts';
370b12 12
V 13 import {
14   TitleComponent,
15   TooltipComponent,
16   GridComponent,
17   PolarComponent,
18   AriaComponent,
19   ParallelComponent,
b25ceb 20   LegendComponent,
8a1406 21   RadarComponent,
a863ad 22   ToolboxComponent,
V 23   DataZoomComponent,
24   VisualMapComponent,
25   TimelineComponent,
26   CalendarComponent,
525484 27   GraphicComponent,
370b12 28 } from 'echarts/components';
V 29
30 import { SVGRenderer } from 'echarts/renderers';
31
32 echarts.use([
b25ceb 33   LegendComponent,
370b12 34   TitleComponent,
V 35   TooltipComponent,
36   GridComponent,
37   PolarComponent,
38   AriaComponent,
39   ParallelComponent,
40   BarChart,
41   LineChart,
42   PieChart,
43   MapChart,
8a1406 44   RadarChart,
370b12 45   SVGRenderer,
V 46   PictorialBarChart,
8a1406 47   RadarComponent,
a863ad 48   ToolboxComponent,
V 49   DataZoomComponent,
50   VisualMapComponent,
51   TimelineComponent,
52   CalendarComponent,
525484 53   GraphicComponent,
c3b5ab 54   ScatterChart,
370b12 55 ]);
V 56
57 export default echarts;