UNPKG

@antv/g2plot

Version:

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

9 lines (8 loc) 372 B
import BasePlot, { PlotConfig } from '../../base/plot'; import WaterfallLayer, { WaterfallViewConfig } from './layer'; export interface WaterfallConfig extends WaterfallViewConfig, PlotConfig { } export default class Waterfall extends BasePlot<WaterfallConfig> { static getDefaultOptions: typeof WaterfallLayer.getDefaultOptions; createLayers(props: any): void; }