Highcharts Dashboards
    Preparing search index...

    Column to series data assignment options.

    interface ColumnAssignmentOptions {
        data: string | string[] | Record<string, string>;
        seriesId: string;
    }
    Index

    Properties

    Properties

    data: string | string[] | Record<string, string>

    The column data for the series in the chart. Value can be:

    • string - name of the column that contains the one-dimensional data.
    • string[] - names of the columns that data will be used in the two-dimensional format.
    • Record<string, string> - the object with the keys as series data key names and column names that will be used for the key-defined two-dimensional series data.

    Try it:

    One-dimensional data column assignment

    Two-dimensional data column assignment

    Key-defined two-dimensional data column assignment

    seriesId: string

    The series id that the data should be assigned to. If the series with given id is not found, the series will be created automatically. The series name will be the same as the series id then.