I'm trying to remove a label text in my Kendo radar chart, illustrated by the red box on the image below.
Does anyone know how to remove these informations from my chart?
Thanks in advance.
You can remove the labels by setting the visible property of labels to false. Please find below the code where you need to add the property.
<kendo-chart-value-axis>
<kendo-chart-value-axis-item [labels]="{ visible:false, format: 'C0' }">
</kendo-chart-value-axis-item>
</kendo-chart-value-axis>