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