FluentHorizontalBarChart from the
Microsoft.FluentUI.AspNetCore.Components.Charts package, one bar per region.
FluentLineChart primitive instead, which mirrors the
package's ChartData/Width/Height/ChartTitle
parameter shape.
<FluentHorizontalBarChart ChartData="@RevenueByRegion"
Variant="HorizontalBarChartVariant.AbsoluteScale"
ChartTitle="Revenue by Region (in $K)"
Width="100%"
Height="240px" />
<FluentLineChart ChartData="@MonthlyActiveUsers"
ChartTitle="Monthly Active Users"
Width="640"
Height="320" />