UNPKG

@carbon/charts

Version:
16 lines (15 loc) 623 B
import { Chart } from '../chart'; import { MeterChartModel } from '../model/meter'; import { ChartConfig } from '../interfaces/model'; import { MeterChartOptions } from '../interfaces/charts'; import { Component } from '../components/component'; export declare class MeterChart extends Chart { model: MeterChartModel; constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<MeterChartOptions>); /** * Retrieves the components to be rendered inside the graph frame. * * @returns {Component[]} An array of components to be rendered. */ getComponents(): Component[]; }