Hi Andrea,
Thanks for using Syncfusion product.
We have analyzed this. The text in data labels can be customized by triggering the “displayTextRendering” event in chart.
The below code snippet shows this
[ASPX]
.DisplayTextRendering("textRendering")
|
In this method, code should be done for changing the text of the point. The text can be bind from an array or a data source field
The below shows this
[JS]
function textRendering(sender) {
var text = ["First point", "Second point", "Third point", "Fourth point", "Fifth point"]; // array/data source
var pointIndex = sender.data.pointIndex; // point index
sender.data.text = text[pointIndex]; // modifying text
} |
We have also made a sample to illustrate this. Find it from the below location
MvcApplication47.zip
The below shows the output of the attached sample
Please let us know if you have any concern.
Thanks,
Jayavigneshwaran