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