UNPKG

@antv/g2plot

Version:

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

9 lines (8 loc) 351 B
import BasePlot, { PlotConfig } from '../../base/plot'; import FunnelLayer, { FunnelViewConfig } from './layer'; export interface FunnelConfig extends FunnelViewConfig, PlotConfig { } export default class Funnel extends BasePlot<FunnelConfig> { static getDefaultOptions: typeof FunnelLayer.getDefaultOptions; createLayers(props: any): void; }