MAIDR JavaScript API
    Preparing search index...
    interface HighchartsSeries {
        type: string;
        name: string;
        data: HighchartsPoint[];
        nodes?: HighchartsNode[];
        xAxis: HighchartsAxis;
        yAxis: HighchartsAxis;
        index: number;
        visible: boolean;
        linkedParent?: HighchartsSeries;
        options: {
            type?: string;
            id?: string;
            linkedTo?: string;
            stacking?: string;
            step?: boolean | "left" | "right" | "center";
            tileShape?: string;
            isInternal?: boolean;
            className?: string;
            custom?: { maidr?: MaidrTraceDeclaration };
        };
    }
    Index

    Properties

    type: string
    name: string
    nodes?: HighchartsNode[]

    The nodes of a node-and-link series, resolved by Highcharts from the links. Absent on every other series type.

    index: number
    visible: boolean
    linkedParent?: HighchartsSeries

    The series this one is drawn against, resolved by Highcharts from options.linkedTo before it renders. An error bar's estimate lives here: the whip carries only the interval.

    options: {
        type?: string;
        id?: string;
        linkedTo?: string;
        stacking?: string;
        step?: boolean | "left" | "right" | "center";
        tileShape?: string;
        isInternal?: boolean;
        className?: string;
        custom?: { maidr?: MaidrTraceDeclaration };
    }

    Type Declaration

    • Optionaltype?: string
    • Optionalid?: string

      Identifier another series' linkedTo can name.

    • OptionallinkedTo?: string

      Binds this series to another one, either by its id or as ':previous'. Highcharts resolves it into HighchartsSeries.linkedParent.

    • Optionalstacking?: string
    • Optionalstep?: boolean | "left" | "right" | "center"

      Where a line series' staircase rises, when it draws one. Highcharts resolves plotOptions into here, so this is set however the chart asked for it. Legacy true means 'left'.

    • OptionaltileShape?: string

      The shape a tilemap draws its tiles with — hexagon (the default), diamond, circle or square. The first three stagger alternate columns; a square tilemap is an aligned grid.

    • OptionalisInternal?: boolean

      Set by Highcharts on internal series (e.g. the Highstock navigator).

    • OptionalclassName?: string

      User- or Highcharts-assigned class name (e.g. highcharts-navigator-series).

    • Optionalcustom?: { maidr?: MaidrTraceDeclaration }

      Highcharts' reserved subspace — documented as "a reserved subspace to store options and values for customized functionality". MAIDR reads only the maidr key of it, and leaves everything else alone.

      This is where a chart says what a series means when the drawing cannot: nothing about a stepped line series says it is a survival curve, and nothing about a scatter on an inverted category axis says its rows are studies in a meta-analysis. See MaidrTraceDeclaration.