BPT

Scatter Chart

BptChartScatter

Scatter chart — free-floating (X, Y) markers on a numeric plane. Built on the BPT chart foundation — palette-aware, drag-to-rotate in 3D mode (markers stay camera-facing on a tilted floor), scroll-zoom, and keyboard-accessible via a hidden data table.

Scatter Chart Parameters
Current Configuration
📋
<BptChartScatter Data="@Data"
                 Width="640"
                 Height="380"
                 XAxisLabel="Engagement"
                 YAxisLabel="Conversion"
                 Title="Sample distribution"
                 OnElementClick="HandleClick" />

@code {
private readonly IReadOnlyList<BptChartScatterPoint> Data = new BptChartScatterPoint[]
{
    new(X: 25, Y: 18, Label: "Pt 1"),
    new(X: 65, Y: 72, Label: "Pt 2"),
    new(X: 45, Y: 40, Label: "Pt 3")
    // …
};

private void HandleClick(BptChartElementEvent e) {
    // Click handler — fires regardless of TooltipMode.
}
}
An unhandled error has occurred. Reload 🗙

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please reload the page.