UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

50 lines (49 loc) 4 kB
import { VChart } from './core'; import { registerScatterChart } from './chart/scatter'; import { registerMapChart } from './chart/map'; import { registerRoseChart } from './chart/rose'; import { registerRadarChart } from './chart/radar'; import { registerHistogramChart } from './chart/histogram'; import { registerCircularProgressChart } from './chart/progress/circular'; import { registerGaugeChart } from './chart/gauge'; import { registerWordCloudChart } from './chart/word-cloud'; import { registerFunnelChart } from './chart/funnel'; import { registerLinearProgressChart } from './chart/progress/linear'; import { registerRangeColumnChart } from './chart/range-column'; import { registerSunburstChart } from './chart/sunburst'; import { registerCirclePackingChart } from './chart/circle-packing'; import { registerTreemapChart } from './chart/treemap'; import { registerWaterfallChart } from './chart/waterfall'; import { registerBoxplotChart } from './chart/box-plot'; import { registerSankeyChart } from './chart/sankey'; import { registerRangeAreaChart } from './chart/range-area'; import { registerHeatmapChart } from './chart/heatmap'; import { registerCorrelationChart } from './chart/correlation'; import { registerCartesianLogAxis, registerCartesianSymlogAxis, registerCartesianTimeAxis } from './component/axis/cartesian'; import { registerPolarBandAxis, registerPolarLinearAxis } from './component/axis/polar'; import { registerContinuousLegend } from './component/legend'; import { registerPolarCrossHair } from './component/crosshair'; import { registerDataZoom, registerScrollBar } from './component/data-zoom'; import { registerIndicator } from './component/indicator'; import { registerGeoCoordinate } from './component/geo'; import { registerMarkLine, registerPolarMarkLine } from './component/marker/mark-line'; import { registerTitle } from './component/title'; import { registerMarkArea, registerPolarMarkArea } from './component/marker/mark-area'; import { registerPlayer } from './component/player'; import { registerTotalLabel } from './component/label/total-label'; import { registerMarkPoint, registerPolarMarkPoint, registerGeoMarkPoint } from './component/marker/mark-point'; import { registerBrush } from './component/brush'; import { registerCustomMark } from './component/custom-mark'; import { registerGridLayout } from './layout/grid-layout/grid-layout'; import { registerPoptip } from './component/poptip'; import { DefaultTicker } from '@visactor/vrender-animate'; import { registerAnimate } from './plugin/other'; import { registerElementSelect } from './interaction/triggers/element-select'; import { registerElementHighlight } from './interaction/triggers/element-highlight'; export { VChart, DefaultTicker, registerAnimate }; export { registerScatterChart, registerRoseChart, registerRadarChart, registerHistogramChart, registerMapChart, registerGaugeChart, registerWordCloudChart, registerFunnelChart, registerWaterfallChart, registerBoxplotChart, registerCircularProgressChart, registerLinearProgressChart, registerRangeColumnChart, registerRangeAreaChart, registerSunburstChart, registerCirclePackingChart, registerTreemapChart, registerSankeyChart, registerHeatmapChart, registerCorrelationChart, registerCartesianTimeAxis, registerCartesianLogAxis, registerCartesianSymlogAxis, registerPolarBandAxis, registerPolarLinearAxis, registerContinuousLegend, registerPolarCrossHair, registerDataZoom, registerScrollBar, registerIndicator, registerGeoCoordinate, registerMarkLine, registerMarkArea, registerMarkPoint, registerPolarMarkLine, registerPolarMarkArea, registerPolarMarkPoint, registerGeoMarkPoint, registerTitle, registerPlayer, registerTotalLabel, registerBrush, registerCustomMark, registerPoptip, registerGridLayout, registerElementHighlight, registerElementSelect }; export default VChart; export * from './core'; export * from './plugin/chart'; export * from './plugin/components/tooltip-handler'; export * from './plugin/components/axis-sync';