Bar Chart

IsabyteChartBar

Categorical bar chart with optional range-bar variation. Built on the BPT chart foundation — palette-aware, drag-to-rotate in 3D mode, scroll-zoom, and keyboard-accessible via a hidden data table.

Bar Chart Parameters
Quarterly revenue
CategoryValue
Q112
Q219
Q315
Q422
Q525
Q617
Current Configuration
📋
<IsabyteChartBar Data="@Data"
             Width="640"
             Height="360"
             RenderMode="IsabyteChartRenderMode.D2"
             XAxisLabel="Quarter"
             YAxisLabel="Revenue"
             ShowDataLabels="true"
             Title="Quarterly revenue"
             OnElementClick="HandleClick" />

@code {
private readonly IReadOnlyList<IsabyteChartBarPoint> Data = new IsabyteChartBarPoint[]
{
    new("Q1", 12), new("Q2", 19), new("Q3", 15), new("Q4", 22)
};

private void HandleClick(IsabyteChartElementEvent e) {
    // Click handler — fires regardless of TooltipMode.
}
}
Related learning

See the Admin Dashboard tutorial for a step-by-step walkthrough.

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.