File tree Expand file tree Collapse file tree 3 files changed +460
-2
lines changed
Expand file tree Collapse file tree 3 files changed +460
-2
lines changed Original file line number Diff line number Diff line change 11import type {
2+ BrushComponentOption ,
23 ComposeOption ,
34 DatasetComponentOption ,
45 DataZoomComponentOption ,
@@ -15,6 +16,7 @@ import type {
1516 VisualMapComponentOption ,
1617} from 'echarts' ;
1718import {
19+ BrushComponent ,
1820 DatasetComponent ,
1921 DataZoomComponent ,
2022 GraphicComponent ,
@@ -50,6 +52,8 @@ function defineComponent<T extends ComponentOption>(ext: EChartExt) {
5052 } ;
5153}
5254
55+ export const Brush = /*#__PURE__*/ defineComponent < BrushComponentOption > ( [ BrushComponent ] ) ;
56+
5357export const Dataset = /*#__PURE__*/ defineComponent < DatasetComponentOption > ( [ DatasetComponent , TransformComponent ] ) ;
5458
5559export const DataZoom = /*#__PURE__*/ defineComponent < DataZoomComponentOption > ( [ DataZoomComponent ] ) ;
Original file line number Diff line number Diff line change 11export { CanvasRenderer , SVGRenderer } from 'echarts/renderers' ;
22export { BarChart , LineChart , PieChart } from './charts.js' ;
33export {
4+ Brush ,
45 Dataset ,
56 DataZoom ,
67 Graphic ,
You can’t perform that action at this time.
0 commit comments