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