Добавил возможность выбора множества тегов для отображения.
This commit is contained in:
21
src/features/history-chart/historyChartEcharts.ts
Normal file
21
src/features/history-chart/historyChartEcharts.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { LineChart, ScatterChart } from 'echarts/charts';
|
||||
import {
|
||||
DataZoomComponent,
|
||||
GridComponent,
|
||||
LegendComponent,
|
||||
TooltipComponent,
|
||||
} from 'echarts/components';
|
||||
import * as echarts from 'echarts/core';
|
||||
import { CanvasRenderer } from 'echarts/renderers';
|
||||
|
||||
echarts.use([
|
||||
LineChart,
|
||||
ScatterChart,
|
||||
GridComponent,
|
||||
LegendComponent,
|
||||
TooltipComponent,
|
||||
DataZoomComponent,
|
||||
CanvasRenderer,
|
||||
]);
|
||||
|
||||
export { echarts };
|
||||
Reference in New Issue
Block a user