package.dist.charts.wordcloud.d.ts Maven / Gradle / Ivy
import { Chart } from '../chart';
import { WordCloudModel } from '../model/wordcloud';
import { ChartConfig } from '../interfaces/model';
import { WordCloudChartOptions } from '../interfaces/charts';
import { WorldCloudChartOptions } from '../interfaces';
import { Component } from '../components/component';
export declare class WordCloudChart extends Chart {
model: WordCloudModel;
constructor(holder: HTMLDivElement, chartConfigs: ChartConfig);
/**
* Retrieves the components to be rendered inside the graph frame.
*
* @returns {Component[]} An array of components to be rendered.
*/
getComponents(): Component[];
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy