MAIDR JavaScript API
    Preparing search index...

    Interface UPlotPathCache

    The path cache uPlot leaves on a series after drawing it.

    uPlot's paths.bars builder returns flags: 0 and a fill path, while the line, stepped and spline builders return flags: 1 (clip the fill to the band). A series whose paths returns nothing (points only) leaves null.

    interface UPlotPathCache {
        flags?: number;
        fill?: unknown;
        stroke?: unknown;
    }
    Index

    Properties

    Properties

    flags?: number
    fill?: unknown
    stroke?: unknown