UNPKG

@antv/g2plot

Version:

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

9 lines (8 loc) 344 B
import BasePlot, { PlotConfig } from '../../base/plot'; import RadarLayer, { RadarViewConfig } from './layer'; export interface RadarConfig extends RadarViewConfig, PlotConfig { } export default class Radar extends BasePlot<RadarConfig> { static getDefaultOptions: typeof RadarLayer.getDefaultOptions; createLayers(props: any): void; }