ScatterChart data

interface ScatterChartData {
    datasets: ScatterChartDataSet[];
    labels?: string[] | DateTime<boolean>[];
    style?: ScatterChartStyle;
}

Hierarchy (view full)

Properties

labels?: string[] | DateTime<boolean>[]

Description

labels is an array of strings that represent the labels of the chart, which are displayed on the index-axis. It is optional. If not provided, the labels will be generated automatically.