@antv/g2
Version:
the Grammar of Graphics in Javascript
17 lines (16 loc) • 403 B
TypeScript
import { ShapeComponent as SC } from '../../runtime';
export type PointOptions = Record<string, any>;
type ColorOptions = {
colorAttribute: 'fill' | 'stroke';
mode?: 'fixed' | 'auto' | 'normal';
[key: string]: any;
};
/**
* Render point in different coordinate.
*/
export declare const BaseCircle: SC<ColorOptions>;
/**
* ●
*/
export declare const Circle: SC<PointOptions>;
export {};