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

    Interface ScatterStyle

    A resolved scatter point style — the single styling channel for the base mark. color fills each point and radius (px) sizes it (both the fallback when a data-driven encoding leaves a point unencoded). outline/outlineWidth stroke a ring around each point for legibility on a busy plot; the selected point is restroked with selectedOutline at selectedWidth to lift it. label colours the optional per-point text (the font comes from theme.font).

    interface ScatterStyle {
        color: string;
        label: string;
        outline: string;
        outlineWidth: number;
        radius: number;
        selectedOutline: string;
        selectedWidth: number;
    }
    Index

    Properties

    color: string
    label: string

    Colour of the optional per-point text label.

    outline: string

    Per-point outline stroke colour.

    outlineWidth: number

    Per-point outline width in px.

    radius: number

    Base point radius in px (data-driven radius overrides this per point).

    selectedOutline: string

    Outline colour for the selected point (the highlight ring).

    selectedWidth: number

    Outline width for the selected point (px) — wider than outlineWidth.