How to hide column chart data

Is it possible to hide absolutely everything except for the actual bars in column chart?

I only found how to hide legend and gridlines, but I also want to hide axis values.

Here is a screenshot, the things in yellow color I would like to hide:

Hi @jjfawkes,

You can use the Visible property of the axis and legend to hide them:

<RadzenCategoryAxis Visible="false" />
<RadzenValueAxis Visible="false">
<RadzenLegend Visible="false" />
1 Like