@carbon/charts
    Preparing search index...

    Interface ChartData

    Represents the data structure for a chart.

    interface ChartData {
        datasets: DataSet[];
        labels: string[];
    }
    Index

    Properties

    Properties

    datasets: DataSet[]

    Array of datasets to display in the chart.

    labels: string[]

    Labels for the x (horizontal) axis. Should match the number of items in each dataset data array.