UNPKG

@antv/g2plot

Version:

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

9 lines (8 loc) 350 B
import BasePlot, { PlotConfig } from '../../base/plot'; import { WordCloudViewConfig } from './layer'; export interface WordCloudConfig extends WordCloudViewConfig, PlotConfig { } export default class WordCloud extends BasePlot<WordCloudConfig> { constructor(container: HTMLElement, props: WordCloudConfig); createLayers(props: any): void; }