@antv/g2
Version:
the Grammar of Graphics in Javascript
10 lines (9 loc) • 378 B
TypeScript
import { MarkComponent as MC } from '../runtime';
import { PointMark } from '../spec';
export type PointOptions = Omit<PointMark, 'type'>;
/**
* Convert value for each channel to point shapes.
* Calc the bbox of each point based on x, y and r.
* This is for allowing their radius can be affected by coordinate(e.g. fisheye).
*/
export declare const Point: MC<PointOptions>;