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