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