UNPKG

@antv/g2plot

Version:

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

9 lines (8 loc) 365 B
import BasePlot, { PlotConfig } from '../../base/plot'; import StackBarLayer, { StackBarViewConfig } from './layer'; export interface StackBarConfig extends StackBarViewConfig, PlotConfig { } export default class StackBar extends BasePlot<StackBarConfig> { static getDefaultOptions: typeof StackBarLayer.getDefaultOptions; createLayers(props: any): void; }