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