56 lines
938 B
TypeScript
56 lines
938 B
TypeScript
![]() |
import * as echarts from 'echarts/core';
|
||
|
|
||
|
import {
|
||
|
BarChart,
|
||
|
LineChart,
|
||
|
PieChart,
|
||
|
MapChart,
|
||
|
PictorialBarChart,
|
||
|
RadarChart,
|
||
|
} from 'echarts/charts';
|
||
|
|
||
|
import {
|
||
|
TitleComponent,
|
||
|
TooltipComponent,
|
||
|
GridComponent,
|
||
|
PolarComponent,
|
||
|
AriaComponent,
|
||
|
ParallelComponent,
|
||
|
LegendComponent,
|
||
|
RadarComponent,
|
||
|
ToolboxComponent,
|
||
|
DataZoomComponent,
|
||
|
VisualMapComponent,
|
||
|
TimelineComponent,
|
||
|
CalendarComponent,
|
||
|
GraphicComponent,
|
||
|
} from 'echarts/components';
|
||
|
|
||
|
import { SVGRenderer } from 'echarts/renderers';
|
||
|
|
||
|
echarts.use([
|
||
|
LegendComponent,
|
||
|
TitleComponent,
|
||
|
TooltipComponent,
|
||
|
GridComponent,
|
||
|
PolarComponent,
|
||
|
AriaComponent,
|
||
|
ParallelComponent,
|
||
|
BarChart,
|
||
|
LineChart,
|
||
|
PieChart,
|
||
|
MapChart,
|
||
|
RadarChart,
|
||
|
SVGRenderer,
|
||
|
PictorialBarChart,
|
||
|
RadarComponent,
|
||
|
ToolboxComponent,
|
||
|
DataZoomComponent,
|
||
|
VisualMapComponent,
|
||
|
TimelineComponent,
|
||
|
CalendarComponent,
|
||
|
GraphicComponent,
|
||
|
]);
|
||
|
|
||
|
export default echarts;
|