UNPKG

@antv/g2plot

Version:

G2 Plot, a market of plots built with the Grammar of Graphics'

9 lines (8 loc) 360 B
import BasePlot, { PlotConfig } from '../../base/plot'; import ColumnLayer, { ColumnViewConfig } from './layer'; export interface ColumnConfig extends ColumnViewConfig, PlotConfig { } export default class Column extends BasePlot<ColumnConfig> { static getDefaultOptions: typeof ColumnLayer.getDefaultOptions; createLayers(props: ColumnConfig): void; }