BarChart data set.

interface BarChartDataSet {
    data: ChartDataUnit<BarChartStyle>[];
    label: string;
    style?: BarChartStyle;
}

Hierarchy

  • BaseSimpleChartDataSet
    • BarChartDataSet

Properties

Properties

The data of the BarChart.

label: string

Description

label is a string that represents the label of the dataset. It is displayed in the legend of the chart.

The style of the data set.