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