Scatter Plot
Correlation visualization for clinical and operational data.
Length of stay vs age
Multiple series plotted on shared axes
razor
<ScatterPlotChart Series="series" Height="350px" />
@code {
private List<ScatterSeries> series = new()
{
new()
{
Name = "Surgical",
Data = new()
{
new ScatterPoint(65, 8.2),
new ScatterPoint(72, 10.5),
new ScatterPoint(58, 6.8),
// ...
}
}
};
}With zoom
EnableZoom for cluster exploration
razor
<ScatterPlotChart Series="series"
EnableZoom="true"
Height="400px" />