UNPKG

@carbon/charts

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