MAIDR Documentation - v3.69.0
    Preparing search index...

    Represents a single data series within a Highcharts chart.

    interface HighchartsSeries {
        type: string;
        name: string;
        data: HighchartsPoint[];
        xAxis: HighchartsAxis;
        yAxis: HighchartsAxis;
        index: number;
        visible: boolean;
        options: { type?: string; stacking?: string };
    }
    Index

    Properties

    type: string
    name: string
    index: number
    visible: boolean
    options: { type?: string; stacking?: string }