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