@carbon/charts
Version:
Carbon Charts component library
14 lines (13 loc) • 559 B
TypeScript
import { AxisChart } from '../axis-chart';
import { ChartConfig } from '../interfaces/model';
import { BubbleChartOptions } from '../interfaces/charts';
import { Component } from '../components/component';
export declare class BubbleChart extends AxisChart {
constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<BubbleChartOptions>);
/**
* Retrieves the components to be rendered inside the graph frame.
*
* @returns {Component[]} An array of components to be rendered.
*/
getComponents(): Component[];
}