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