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