UNPKG

@carbon/charts

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