UNPKG

@carbon/charts

Version:
14 lines (13 loc) 560 B
import { AxisChart } from '../axis-chart'; import { Component } from '../components/component'; import { ChartConfig } from '../interfaces/model'; import { AreaChartOptions } from '../interfaces/charts'; export declare class StackedAreaChart 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[]; }