I'm able to bind the data and display the piechart but default others is being added in the legend and chart. how can we remove this?
Hi, jpavansharma
The default slice 'others' is added for all values which are too small to be depicted nicely on a pie chart. You have control over which values are grouped into the Others slice with the options othersCategoryThreshold and othersCategoryType. You can also use the othersCategoryText option to set alternative label for the others slice. You can see how to use them in the API Documentation.
See here a short example of how you can configure these options:
In this example all values below 8% of the total will be grouped in the others slice.
Here follows another example that effectively switches off the others slice and depicts all slices no matter how small their values are:
Hope this helps.
Cheers, Lazar