BPT

Polar Chart

BptChartPolar

Polar area chart (Florence Nightingale / coxcomb) — N equal-angle sectors, each with a radius proportional to its value. Useful for naturally-cyclical categories like months, hours, or compass directions. Built on the BPT chart foundation — palette-aware, drag-to-rotate in 3D mode for an oblique projection of the polar plane, scroll-zoom, and keyboard-accessible via a hidden data table.

Polar Chart Parameters
Current Configuration
📋
<BptChartPolar Data="@Data"
               Width="520"
               Height="440"
               Title="Bookings by month"
               OnElementClick="HandleClick" />

@code {
private readonly IReadOnlyList<BptChartPolarPoint> Data = new BptChartPolarPoint[]
{
    new("Jan", 42), new("Feb", 38), new("Mar", 56),
    // …12 months total
};

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.