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 GroupBarLayer, { GroupBarViewConfig } from './layer'; export interface GroupBarConfig extends GroupBarViewConfig, PlotConfig { } export default class GroupBar extends BasePlot<GroupBarConfig> { static getDefaultOptions: typeof GroupBarLayer.getDefaultOptions; createLayers(props: any): void; }