MAIDR JavaScript API
    Preparing search index...

    Interface UPlotSeries

    One series, as uPlot holds it after initSeries.

    interface UPlotSeries {
        label?: unknown;
        scale?: string;
        show?: boolean;
        value?: unknown;
        points?: { show?: unknown };
        _paths?: UPlotPathCache | null;
        facets?: readonly { scale?: string }[];
        maidr?: false | UPlotSeriesMaidrOptions;
    }
    Index

    Properties

    label?: unknown
    scale?: string
    show?: boolean
    value?: unknown

    Formats a raw value the way uPlot's legend shows it. Always a function on an initialised series; uPlot resolves a template string into one.

    points?: { show?: unknown }
    _paths?: UPlotPathCache | null

    Set by uPlot on every draw of the series; see UPlotPathCache.

    facets?: readonly { scale?: string }[]

    Faceted mode only: which scale each data column is drawn against.

    maidr?: false | UPlotSeriesMaidrOptions

    Per-series override read by this adapter only; uPlot keeps unknown keys on a series untouched.