@byomakase/omakase-player
    Preparing search index...

    Interface BarChartLaneTrackConfig

    Per-track configuration for BarChartLane. Each track added via addTrack() can carry its own scale, baseline, interpolation settings, and visual style that override lane-level defaults.

    interface BarChartLaneTrackConfig {
        interpolationStrategy?: InterpolationStrategy;
        interpolationWidth?: number;
        scale?: BarChartLaneTrackScale;
        scaleBaseline?: number;
        style?: BarChartLaneTrackStyle;
        trackOrderIndex?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    interpolationStrategy?: InterpolationStrategy

    Aggregation strategy used when multiple samples fall in the same interpolation bucket.

    interpolationWidth?: number

    Width in pixels of a single interpolation bucket. Smaller = more detail

    scale?: BarChartLaneTrackScale

    Value domain for this track. Auto-derived from data when omitted.

    scaleBaseline?: number

    Value that maps to the bar baseline (zero-crossing). Defaults to 0.

    trackOrderIndex?: number

    Zero-based index at which to insert the track into the lane's track list. When omitted, the track is appended at the end.