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

    Interface PowerBin

    One bucket of the power histogram.

    Carries pond's canonical bin edges (start / end, watts) — the same { start, end, …aggregates } shape core's byColumn returns — so the array feeds @pond-ts/charts directly:

    <BarChart bins={power.distribution} column="seconds" />
    
    interface PowerBin {
        end: number;
        seconds: number;
        start: number;
    }
    Index

    Properties

    Properties

    end: number

    Exclusive upper edge of the bin, watts (start + binWatts).

    seconds: number

    Seconds spent in this bin.

    start: number

    Inclusive lower edge of the bin, watts.