UNPKG

@carbon/charts

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