Hiding values on value axis

Hi,

is it possible to show value axis without values? I have TimeSpan value 00:00:00 on category axis but when I set RadzenValueAxis Visibility to false it hides part of that value and shows just 00:00.

Hi @leoog5,

You can try returning string.Empty via custom Formatter. Something like this:

<RadzenValueAxis Formatter="@(value => string.Empty)" />
1 Like