meo-canvas - v8.1.0
    Preparing search index...

    Interface CartesianChartData

    Defines the data structure for cartesian charts (bar, line).

    • labels: An array of strings for the x-axis categories.
    • datasets: An array of ChartDataset objects, each representing a series.
    interface CartesianChartData {
        datasets: ChartDataset[];
        labels: string[];
    }
    Index
    datasets: ChartDataset[]

    One series per entry, drawn together against the same axes.

    labels: string[]

    The category axis, one entry per position. Every dataset is read against these.