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

    Interface LineChartLaneTrackMeasurementStyle

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

    interface LineChartLaneTrackMeasurementStyle {
        fillAbove: Color;
        fillAboveLinearGradientColorStops: (string | number)[];
        fillBelow: Color;
        fillBelowLinearGradientColorStops: (string | number)[];
        lineDash: Size[];
        lineOpacity: Size;
        lineStroke: Color;
        lineStrokeWidth: Size;
        measurement?: string;
        pointFill: Color;
        pointOpacity: Size;
        pointRadius: Size;
        pointStroke: Color;
        pointStrokeWidth: Size;
    }
    Index

    Properties

    fillAbove: Color

    Solid fill color for the area above the line. Mutually exclusive with fillAboveLinearGradientColorStops.

    fillAboveLinearGradientColorStops: (string | number)[]

    Gradient color stops (Konva format, bottom→top) for the area above the line.

    fillBelow: Color

    Solid fill color for the area below the line. Mutually exclusive with fillBelowLinearGradientColorStops.

    fillBelowLinearGradientColorStops: (string | number)[]

    Gradient color stops (Konva format, top→bottom) for the area below the line.

    lineDash: Size[]

    Dash pattern for the connecting polyline (Konva format).

    lineOpacity: Size

    Opacity of the connecting polyline (0–1).

    lineStroke: Color

    Color of the connecting polyline.

    lineStrokeWidth: Size

    Width of the connecting polyline in pixels.

    measurement?: string

    Measurement this style applies to (matches ObservationItem.measurement). When omitted, acts as a wildcard fallback for any measurement that has no specific entry.

    pointFill: Color

    Fill color of data-point circles.

    pointOpacity: Size

    Opacity of data-point circles (0–1).

    pointRadius: Size

    Radius of each data-point circle in pixels.

    pointStroke: Color

    Stroke color of data-point circles.

    pointStrokeWidth: Size

    Stroke width of data-point circles in pixels.