UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

119 lines (61 loc) 5.04 kB
import { VChart } from "./core"; import { registerHarmonyEnv } from "./env"; import { registerLineChart } from "./chart/line"; import { registerAreaChart } from "./chart/area"; import { registerBarChart } from "./chart/bar"; import { registerScatterChart } from "./chart/scatter"; import { registerMapChart } from "./chart/map"; import { registerPieChart } from "./chart/pie"; import { registerRoseChart } from "./chart/rose"; import { registerRadarChart } from "./chart/radar"; import { registerCommonChart } from "./chart/common"; 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 { registerCartesianBandAxis, registerCartesianLinearAxis, registerCartesianLogAxis, registerCartesianSymlogAxis, registerCartesianTimeAxis } from "./component/axis/cartesian"; import { registerPolarBandAxis, registerPolarLinearAxis } from "./component/axis/polar"; import { registerContinuousLegend, registerDiscreteLegend } from "./component/legend"; import { registerTooltip } from "./component/tooltip"; import { registerCartesianCrossHair, 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 { registerLabel } from "./component/label"; 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 { registerCanvasTooltipHandler } from "./plugin/components/tooltip-handler"; 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"; VChart.useRegisters([ registerLineChart, registerAreaChart, registerBarChart, registerPieChart, registerCommonChart, registerCartesianLinearAxis, registerCartesianBandAxis, registerDiscreteLegend, registerTooltip, registerCartesianCrossHair, registerLabel, registerCanvasTooltipHandler ]), VChart.useRegisters([ registerHarmonyEnv ]); 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"; //# sourceMappingURL=index-harmony-simple.js.map