@antv/g2plot
Version:
G2 Plot, a market of plots built with the Grammar of Graphics'
9 lines (8 loc) • 337 B
TypeScript
import BasePlot, { PlotConfig } from '../../base/plot';
import RoseLayer, { RoseViewConfig } from './layer';
export interface RoseConfig extends RoseViewConfig, PlotConfig {
}
export default class Rose extends BasePlot<RoseConfig> {
static getDefaultOptions: typeof RoseLayer.getDefaultOptions;
createLayers(props: any): void;
}