@pond-ts/charts API Reference
    Preparing search index...

    Interface BandSeries

    A chart-ready view of a band (variance envelope): the time axis plus a paired lower/upper edge per sample. A sample is part of the filled band only where both edges are finite; either edge NaN is a gap (the fill breaks, it does not bridge — same contract as ChartSeries).

    interface BandSeries {
        length: number;
        lower: Float64Array;
        upper: Float64Array;
        x: Float64Array;
    }
    Index

    Properties

    Properties

    length: number
    lower: Float64Array
    upper: Float64Array
    x: Float64Array