UNPKG

@antv/g2plot

Version:

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

10 lines (9 loc) 426 B
import BasePlot, { PlotConfig } from '../../base/plot'; import RingProgressLayer, { RingProgressViewConfig } from './layer'; export interface RingProgressConfig extends RingProgressViewConfig, PlotConfig { } export default class RingProgress extends BasePlot<RingProgressConfig> { static getDefaultOptions: typeof RingProgressLayer.getDefaultOptions; createLayers(props: any): void; update(value: number): void; }