I am having trouble getting the Y axis auto scaling to work.
Using your demo page at Blazor Chart Component - Axis Configuration | Free UI Components by Radzen
Replace the sample code with that at the bottom of this post, then click on run
<div class="rz-p-0 rz-p-md-12">
<RadzenChart>
<RadzenColumnSeries Data="@revenue" CategoryProperty="Quarter" ValueProperty="Revenue" />
<RadzenValueAxis Min="0"/>
</RadzenChart>
</div>
@code {
class DataItem
{
public string Quarter { get; set; }
public double Revenue { get; set; }
}
DataItem[] revenue = new DataItem[]
{
new DataItem { Quarter = "Q1", Revenue = 2340 },
new DataItem { Quarter = "Q2", Revenue = 2840 },
new DataItem { Quarter = "Q3", Revenue = 2740 },
new DataItem { Quarter = "Q4", Revenue = 2940 }
};
}