@antv/g2
Version:
the Grammar of Graphics in Javascript
116 lines (114 loc) • 7.39 kB
text/typescript
export { Rect as IntervalShape } from './interval/rect';
export { Hollow as IntervalHollow } from './interval/hollow';
export { Funnel as IntervalFunnel } from './interval/funnel';
export { Pyramid as IntervalPyramid } from './interval/pyramid';
export { Rect as CellShape } from './interval/rect';
export { Hollow as CellHollow } from './interval/hollow';
export { Line as LineShape } from './line/line';
export { Smooth as LineSmooth } from './line/smooth';
export { HV as LineHV } from './line/hv';
export { VH as LineVH } from './line/vh';
export { HVH as LineHVH } from './line/hvh';
export { Trail as LineTrail } from './line/trail';
export { HollowBowtie as PointHollowBowtie } from './point/hollowBowtie';
export { HollowDiamond as PointHollowDiamond } from './point/hollowDiamond';
export { HollowHexagon as PointHollowHexagon } from './point/hollowHexagon';
export { HollowPoint as PointHollow } from './point/hollow';
export { HollowSquare as PointHollowSquare } from './point/hollowSquare';
export { HollowTriangle as PointHollowTriangle } from './point/hollowTriangle';
export { HollowTriangleDown as PointHollowTriangleDown } from './point/hollowTriangleDown';
export { HollowCircle as PointHollowCircle } from './point/hollowCircle';
export { Bowtie as PointBowtie } from './point/bowtie';
export { Cross as PointCross } from './point/cross';
export { Diamond as PointDiamond } from './point/diamond';
export { Hexagon as PointHexagon } from './point/hexagon';
export { Hyphen as PointHyphen } from './point/hyphen';
export { Line as PointLine } from './point/line';
export { Plus as PointPlus } from './point/plus';
export { Point as PointShape } from './point/point';
export { Square as PointSquare } from './point/square';
export { Tick as PointTick } from './point/tick';
export { Triangle as PointTriangle } from './point/triangle';
export { TriangleDown as PointTriangleDown } from './point/triangleDown';
export { Circle as PointCircle } from './point/circle';
export { Vector as VectorShape } from './vector/vector';
export { Text as TextShape } from './text/text';
export { Badge as TextBadge } from './text/badge';
export { Tag as TextTag } from './text/tag';
export { Area as AreaShape } from './area/area';
export { Smooth as AreaSmooth } from './area/smooth';
export { HVH as AreaHVH } from './area/hvh';
export { VH as AreaVH } from './area/vh';
export { HV as AreaHV } from './area/hv';
export { Link as LinkShape } from './link/link';
export { Smooth as LinkSmooth } from './link/smooth';
export { VHV as LinkVHV } from './link/vhv';
export { Arc as LinkArc } from './link/arc';
export { Image as ImageShape } from './image/image';
export { Polygon as PolygonShape } from './polygon/polygon';
export { Ribbon as PolygonRibbon } from './polygon/ribbon';
export { Box as BoxShape } from './box/box';
export { Violin as BoxViolin } from './box/violin';
export { Line as LineXY } from './lineXY/line';
export { Connector as ConnectorShape } from './connector/connector';
export { Label as LabelShape } from './label/label';
export { Path as PathShape } from './path/path';
export { Hollow as PathHollow } from './path/hollow';
export { Density as DensityShape } from './density/density';
export { Heatmap as HeatmapShape } from './heatmap/heatmap';
export { Rect as RangeShape } from './interval/rect';
export { Rect as RectShape } from './interval/rect';
export { Hollow as RectHollow } from './interval/hollow';
export { Shape as ShapeShape } from './shape/shape';
export { Liquid as LiquidShape } from './liquid/liquid';
export { Round as GaugeRound } from './gauge/round';
export type { RectOptions as IntervalShapeOptions } from './interval/rect';
export type { HollowOptions as IntervalHollowOptions } from './interval/hollow';
export type { FunnelOptions as IntervalFunnelOptions } from './interval/funnel';
export type { PyramidOptions as IntervalPyramidOptions } from './interval/pyramid';
export type { LineOptions as LineShapeOptions } from './line/line';
export type { SmoothOptions as LineSmoothOptions } from './line/smooth';
export type { HVOptions as LineHVOptions } from './line/hv';
export type { VHOptions as LineVHOptions } from './line/vh';
export type { HVHOptions as LineHVHOptions } from './line/hvh';
export type { TrailOptions as LineTrailOptions } from './line/trail';
export type { BowtieOptions as PointBowtieOptions } from './point/bowtie';
export type { CrossOptions as PointCrossOptions } from './point/cross';
export type { DiamondOptions as PointDiamondOptions } from './point/diamond';
export type { HexagonOptions as PointHexagonOptions } from './point/hexagon';
export type { HollowBowtieOptions as PointHollowBowtieOptions } from './point/hollowBowtie';
export type { HollowDiamondOptions as PointHollowDiamondOptions } from './point/hollowDiamond';
export type { HollowHexagonOptions as PointHollowHexagonOptions } from './point/hollowHexagon';
export type { HollowPointOptions as PointHollowPointOptions } from './point/hollow';
export type { HollowSquareOptions as PointHollowSquareOptions } from './point/hollowSquare';
export type { HollowTriangleOptions as PointHollowTriangleOptions } from './point/hollowTriangle';
export type { HollowTriangleDownOptions as PointHollowTriangleDownOptions } from './point/hollowTriangleDown';
export type { HyphenOptions as PointHyphenOptions } from './point/hyphen';
export type { LineOptions as PointLineOptions } from './point/line';
export type { PlusOptions as PointPlusOptions } from './point/plus';
export type { PointOptions as PointShapeOptions } from './point/point';
export type { SquareOptions as PointSquareOptions } from './point/square';
export type { TickOptions as PointTickOptions } from './point/tick';
export type { TriangleOptions as PointTriangleOptions } from './point/triangle';
export type { TriangleDownOptions as PointTriangleDownOptions } from './point/triangleDown';
export type { VectorOptions as VectorShapeOptions } from './vector/vector';
export type { TextOptions as TextShapeOptions } from './text/text';
export type { BadgeOptions as TextBadgeOptions } from './text/badge';
export type { TagOptions as TextTagOptions } from './text/tag';
export type { AreaOptions as AreaShapeOptions } from './area/area';
export type { SmoothOptions as AreaSmoothOptions } from './area/smooth';
export type { HVHOptions as AreaHVHAreaOptions } from './area/hvh';
export type { VHOptions as AreaVHAreaOptions } from './area/vh';
export type { HVOptions as AreaHVAreaOptions } from './area/hv';
export type { LinkOptions as LinkShapeOptions } from './link/link';
export type { ImageOptions as ImageShapeOptions } from './image/image';
export type { PolygonOptions as PolygonShapeOptions } from './polygon/polygon';
export type { BoxOptions as BoxShapeOptions } from './box/box';
export type { ViolinOptions as BoxViolinOptions } from './box/violin';
export type { HeatmapOptions as HeatmapOptions } from './heatmap/heatmap';
export type { LineOptions as LineLineXYOptions } from './lineXY/line';
export type { ConnectorOptions as ConnectorShapeOptions } from './connector/connector';
export type { LabelOptions as LabelShapeOptions } from './label/label';
export type { DensityOptions as DensityShapeOptions } from './density/density';
export type { ShapeOptions as ShapeShapeOptions } from './shape/shape';
export type { LiquidOptions } from './liquid/liquid';