1
votes

I'm trying to remove a label text in my Kendo radar chart, illustrated by the red box on the image below.

Radar chart

Does anyone know how to remove these informations from my chart?

Thanks in advance.

1
To add some information about the question, here is the documentation URL: telerik.com/kendo-angular-ui/components/charts/series-types/… ,and stackblitz link to the source: stackblitz.com/run/?file=app%2Fapp.module.ts - Guilhermlimma

1 Answers

1
votes

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>