UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

62 lines (32 loc) 3.71 kB
import { ScrollBar, registerScrollBar } from "./data-zoom/scroll-bar/scroll-bar"; import { DataZoom, registerDataZoom } from "./data-zoom/data-zoom/data-zoom"; import { CustomMark, registerCustomMark } from "./custom-mark/custom-mark"; import { Brush, registerBrush } from "./brush/brush"; import { CartesianAxis, CartesianLinearAxis, CartesianBandAxis, CartesianTimeAxis, CartesianLogAxis, CartesianSymlogAxis, registerCartesianBandAxis, registerCartesianLinearAxis, registerCartesianLogAxis, registerCartesianSymlogAxis, registerCartesianTimeAxis } from "./axis/cartesian/index"; import { PolarAxis, PolarBandAxis, PolarLinearAxis, registerPolarBandAxis, registerPolarLinearAxis } from "./axis/polar"; import { DiscreteLegend, registerDiscreteLegend } from "./legend/discrete"; import { ContinuousLegend, registerContinuousLegend } from "./legend/continuous"; import { Indicator, registerIndicator } from "./indicator"; import { Title, registerTitle } from "./title"; import { GeoCoordinate, registerGeoCoordinate } from "./geo"; import { CartesianCrossHair, PolarCrossHair, registerCartesianCrossHair, registerPolarCrossHair } from "./crosshair"; import { Player, registerPlayer } from "./player"; import { CartesianMarkLine, PolarMarkLine, registerMarkLine, registerPolarMarkLine } from "./marker/mark-line"; import { CartesianMarkArea, PolarMarkArea, registerMarkArea, registerPolarMarkArea } from "./marker/mark-area"; import { CartesianMarkPoint, PolarMarkPoint, GeoMarkPoint, registerMarkPoint, registerPolarMarkPoint, registerGeoMarkPoint } from "./marker/mark-point"; import { Tooltip, registerTooltip } from "./tooltip"; import { Label, registerLabel } from "./label"; import { TotalLabel, registerTotalLabel } from "./label/total-label"; import { registerPoptip } from "./poptip/index"; import { registerDimensionTooltipProcessor } from "./tooltip/processor/dimension-tooltip"; import { registerMarkTooltipProcessor } from "./tooltip/processor/mark-tooltip"; import { getCartesianCrosshairRect } from "./crosshair/utils/cartesian"; import { registerGroupTooltipProcessor } from "./tooltip/processor/group-tooltip"; import { BandAxisMixin } from "./axis/mixin/band-axis-mixin"; import { LinearAxisMixin } from "./axis/mixin/linear-axis-mixin"; export { ScrollBar, DataZoom, CustomMark, Brush, BandAxisMixin, LinearAxisMixin, CartesianAxis, CartesianBandAxis, CartesianLinearAxis, CartesianTimeAxis, CartesianLogAxis, CartesianSymlogAxis, PolarAxis, PolarBandAxis, PolarLinearAxis, DiscreteLegend, ContinuousLegend, Indicator, Title, GeoCoordinate, CartesianCrossHair, PolarCrossHair, Player, CartesianMarkLine, CartesianMarkArea, CartesianMarkPoint, PolarMarkLine, PolarMarkArea, PolarMarkPoint, GeoMarkPoint, Tooltip, Label, TotalLabel }; export { getCartesianCrosshairRect }; export { registerBrush, registerScrollBar, registerTitle, registerMarkTooltipProcessor, registerDimensionTooltipProcessor, registerGroupTooltipProcessor, registerTooltip, registerCartesianBandAxis, registerCartesianCrossHair, registerCartesianLinearAxis, registerCartesianLogAxis, registerCartesianSymlogAxis, registerCartesianTimeAxis, registerContinuousLegend, registerCustomMark, registerDataZoom, registerDiscreteLegend, registerGeoCoordinate, registerIndicator, registerLabel, registerTotalLabel, registerMarkLine, registerMarkArea, registerMarkPoint, registerPolarMarkLine, registerPolarMarkArea, registerPolarMarkPoint, registerGeoMarkPoint, registerPlayer, registerPolarBandAxis, registerPolarCrossHair, registerPolarLinearAxis, registerPoptip }; export * from "./tooltip/interface"; export { isXAxis, isYAxis, isZAxis } from "./axis/cartesian/util"; //# sourceMappingURL=index.js.map