MAIDR JavaScript API
    Preparing search index...

    One series as read, with what the highlight needs to find it again.

    interface SeriesReading {
        layerId: string;
        series: LwcSeries;
        kind: SeriesKind;
        paneIndex: number;
        subplotRow: number;
        points: SeriesPoint[];
        items: LwcDataItem[];
        total: number;
    }
    Index

    Properties

    layerId: string
    series: LwcSeries
    paneIndex: number

    The pane the series is drawn in, as pane.paneIndex() reports it.

    subplotRow: number

    Row of the subplot in the figure's grid, counted from the bottom pane read.

    points: SeriesPoint[]

    The points handed to MAIDR, oldest first, after the maxWidth window.

    items: LwcDataItem[]

    The source row of each point in points, by the same index -- so a MAIDR column is a bar the chart can place on its time scale.

    total: number

    How many points the series had before the maxWidth window.