UNPKG

@antv/g2plot

Version:

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

9 lines (8 loc) 337 B
import BasePlot, { PlotConfig } from '../../base/plot'; import LineLayer, { LineViewConfig } from './layer'; export interface LineConfig extends LineViewConfig, PlotConfig { } export default class Line extends BasePlot<LineConfig> { static getDefaultOptions: typeof LineLayer.getDefaultOptions; createLayers(props: any): void; }