@carbon/charts
Version:
Carbon charting components
9 lines (8 loc) • 349 B
TypeScript
import { PieChartModel } from '../model-pie';
import { Chart } from '../chart';
import { ChartConfig, PieChartOptions } from '../interfaces/index';
export declare class PieChart extends Chart {
model: PieChartModel;
constructor(holder: Element, chartConfigs: ChartConfig<PieChartOptions>, extending?: boolean);
getComponents(): any[];
}