@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 RingLayer, { RingViewConfig } from './layer';
export interface RingConfig extends RingViewConfig, PlotConfig {
}
export default class Ring extends BasePlot<RingConfig> {
static getDefaultOptions: typeof RingLayer.getDefaultOptions;
createLayers(props: any): void;
}