| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { HOMMarkType } from '../../spec';
- import { Interval, Rect, Point, Area, Line, Cell, Vector, Link, Polygon, Image, Text, Box, LineX, LineY, Range, RangeX, RangeY, Connector, Sankey, Treemap, Boxplot, Density, Heatmap, Path, Shape, Pack, ForceGraph, Tree, WordCloud, HOMMark, Gauge } from './mark';
- export interface Mark {
- mark(HOMMark: HOMMarkType): HOMMark;
- interval(): Interval;
- rect(): Rect;
- point(): Point;
- area(): Area;
- line(): Line;
- cell(): Cell;
- vector(): Vector;
- link(): Link;
- polygon(): Polygon;
- image(): Image;
- text(): Text;
- box(): Box;
- lineX(): LineX;
- lineY(): LineY;
- range(): Range;
- rangeX(): RangeX;
- rangeY(): RangeY;
- connector(): Connector;
- sankey(): Sankey;
- treemap(): Treemap;
- boxplot(): Boxplot;
- density(): Density;
- heatmap(): Heatmap;
- path(): Path;
- shape(): Shape;
- pack(): Pack;
- forceGraph(): ForceGraph;
- tree(): Tree;
- wordCloud(): WordCloud;
- gauge(): Gauge;
- }
- export { MarkNode } from './base';
- export declare const mark: {
- mark: typeof HOMMark;
- interval: typeof Interval;
- rect: typeof Rect;
- point: typeof Point;
- area: typeof Area;
- line: typeof Line;
- cell: typeof Cell;
- vector: typeof Vector;
- link: typeof Link;
- polygon: typeof Polygon;
- image: typeof Image;
- text: typeof Text;
- box: typeof Box;
- lineX: typeof LineX;
- lineY: typeof LineY;
- range: typeof Range;
- rangeX: typeof RangeX;
- rangeY: typeof RangeY;
- connector: typeof Connector;
- sankey: typeof Sankey;
- treemap: typeof Treemap;
- boxplot: typeof Boxplot;
- density: typeof Density;
- heatmap: typeof Heatmap;
- path: typeof Path;
- shape: typeof Shape;
- pack: typeof Pack;
- forceGraph: typeof ForceGraph;
- tree: typeof Tree;
- wordCloud: typeof WordCloud;
- gauge: typeof Gauge;
- };
|