Hi Kalpa,
Thanks for contacting Syncfusion Support.
We have analyzed your query and created a sample based on your requirement. This can be achieved by “displayTextRendering” event.
Please follow the code example below
[JS] $(function () { $("#container").ejChart( { displayTextRendering:"text" }); }); function text(sender) { //displayTextRendering event triggered sender.data.text = sender.data.text + "%"; } |
In the above code, we are triggering “diplayTextRendering” event. In the event, we are added the percentage with data label text.
We have also made a sample for your reference and attached in the below location.
Find the output of the sample below
Please let us know if you have any concern.
Regards,
Saravana Kumar K