Stacked Bar Chart
Composition over categories with stacked series.
Basic
Stacked vertical bars
razor
<StackedBarChart Categories="months"
Series="series"
Height="350px" />
@code {
private List<ChartSeries> series = new()
{
new() { Name = "ICU", Data = new() { 12, 15, 10, 18, 14, 20 } },
new() { Name = "General", Data = new() { 45, 52, 38, 60, 42, 55 } },
new() { Name = "Outpatient", Data = new() { 80, 75, 90, 85, 95, 88 } }
};
}Horizontal
Horizontal="true" rotates the axis
razor
<StackedBarChart Categories="months"
Series="series"
Horizontal="true"
Height="350px" />