Is it possible to format the horizontal axis labels in percentage format (see attached screenshot)?
in .html file:
<
kendo-chart-series
>
<
kendo-chart-series-item
[data]="chartManagementObj.growthrevpatienttypeData"
type
=
"bar"
[labels]="seriesLabels"
field
=
"revenue"
categoryField
=
"patienttype"
>
</
kendo-chart-series-item
>
in .ts file:
public seriesLabels: SeriesLabels = {
visible: true, padding: 3, format: 'p2',
font: 'bold 12px Arial, sans-serif'
}
Thanks!