UNPKG

@carbon/charts

Version:
16 lines (15 loc) 642 B
import { AxisChart } from '../axis-chart'; import { BulletChartModel } from '../model/bullet'; import { BulletChartOptions } from '../interfaces/charts'; import { ChartConfig } from '../interfaces/model'; import { Component } from '../components/component'; export declare class BulletChart extends AxisChart { model: BulletChartModel; constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<BulletChartOptions>); /** * Retrieves the components to be rendered inside the graph frame. * * @returns {Component[]} An array of components to be rendered. */ getComponents(): Component[]; }