BPT

Histogram Chart

BptChartHistogram

Histogram — bins a sequence of numeric values into adjacent rectangles. Switch the source distribution to see how the silhouette changes. Built on the BPT chart foundation — palette-aware, drag-to-rotate in 3D mode, scroll-zoom, and keyboard-accessible via a hidden data table.

Histogram Chart Parameters
Current Configuration
📋
<BptChartHistogram Values="@Values"
                   Width="640"
                   Height="360"
                   XAxisLabel="Value"
                   YAxisLabel="Frequency"
                   Title="Normal distribution"
                   OnElementClick="HandleClick" />

@code {
// Histogram bins raw numeric values; no per-point record type.
private IReadOnlyList<double> Values = new double[]
{
    // …500 normal samples (mean 50, σ 15)
};

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.