import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ChartDisplayType` - The `ChartDisplayType` object is used to describe the different types of charts. * | 'line' * | 'area' * | 'bar' * | 'pie' * | 'donut' * | 'radialBar' * | 'scatter' * | 'bubble' * | 'heatmap' * | 'candlestick' * | 'boxPlot' * | 'radar' * | 'polarArea' * | 'rangeBar' * | 'rangeArea' * | 'treemap' */ export declare const ChartDisplayType: { readonly Line: "line"; readonly Area: "area"; readonly Bar: "bar"; readonly Pie: "pie"; readonly Donut: "donut"; readonly RadialBar: "radialBar"; readonly Scatter: "scatter"; readonly Bubble: "bubble"; readonly HeatMap: "heatmap"; readonly Candlestick: "candlestick"; readonly BoxPlot: "boxPlot"; readonly Radar: "radar"; readonly PolarArea: "polarArea"; readonly RangeBar: "rangeBar"; readonly RangeArea: "rangeArea"; readonly TreeMap: "treemap"; }; /** * @public */ export type ChartDisplayType = ValuesOf; //# sourceMappingURL=ChartDisplayType.d.ts.map