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