Polar Chart

IsabyteChartPolar

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
Bookings by month
SectorValue
Jan42
Feb38
Mar56
Apr74
May91
Jun108
Jul122
Aug117
Sep95
Oct78
Nov62
Dec88
Current Configuration
📋
<IsabyteChartPolar Data="@Data"
               Width="520"
               Height="440"
               Title="Bookings by month"
               OnElementClick="HandleClick" />

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

private void HandleClick(IsabyteChartElementEvent 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.