UNPKG

@antv/g2plot

Version:

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

9 lines (8 loc) 374 B
import BasePlot, { PlotConfig } from '../../base/plot'; import StackAreaLayer, { StackAreaLayerConfig } from './layer'; export interface StackAreaConfig extends StackAreaLayerConfig, PlotConfig { } export default class StackArea extends BasePlot<StackAreaConfig> { static getDefaultOptions: typeof StackAreaLayer.getDefaultOptions; createLayers(props: any): void; }