Issue Setting Axis Min Value for Column Chart

I am creating a Column Chart and want to set the Min Axis Value to zero (Y-axis) as for some charts the axis starts at a value higher than 0 and if the value is equal to or less than this value and it seems to users that the column is zero.

When I set just the Min for the axis, there is an error as follows but if I set both the Min & Max, there is no error. However, I don't want to fix the maximum as it changes depending on the data. How do I just set the Min to zero?

Hi @kirank,

This isn't a known issue and I couldn't reproduce it in our live demo.


Can you try making it fail the same way as in your case? You can click Edit Source to update the example.

Thank you @korchev.

I made changes to the live demo but no issues. I used the code for the data against my chart and no issue but realised that the issue was only against my data source. This was all generated using Radzen Studio.

To resolve, in the razor, I surrounded the chart with a check @if(data != null) and this resolved the issue.