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

    Interface BarChartLaneTrackMeasurementStyle

    Visual style for a single measurement series within a bar-chart track. Matched to data by measurement; unmatched measurements use defaults.

    interface BarChartLaneTrackMeasurementStyle {
        barType: "default" | "og";
        cornerRadius: Size | [Size, Size, Size, Size];
        fill: Color;
        fillLinearGradientColorStops: (string | number)[];
        measurement: string | undefined;
        opacity: Size;
        paddingX: Size | [Size, Size];
        strokeColor: Color;
        strokeWidth: Size;
    }
    Index

    Properties

    barType: "default" | "og"

    Bar rendering mode: 'default' draws rectangles, 'og' draws a column of stacked circles.

    cornerRadius: Size | [Size, Size, Size, Size]

    Corner radius for 'default' bars.

    fill: Color

    Solid fill color. Mutually exclusive with fillLinearGradientColorStops.

    fillLinearGradientColorStops: (string | number)[]

    Gradient color stops (Konva format). Used when fill is not set.

    measurement: string | undefined

    Measurement this style applies to (matches ObservationItem.measurement).

    opacity: Size

    Overall bar opacity (0–1).

    paddingX: Size | [Size, Size]

    Horizontal padding inside the bar's allocated width. Single value = symmetric; tuple = [left, right].

    strokeColor: Color

    Stroke color drawn around each bar.

    strokeWidth: Size

    Stroke width in pixels.