Pie chart to display value instead of percentage using anychart widget

1
I have developed a pie chart in which i need to showcase value rather than percentage. In the json i have passed the values like  "values": [       15,       6,       11,       20 which is showing output as follows but i want the values to be displayed.  
asked
1 answers
1

Take a look at the full reference for the widget, it has a ‘textinfo’ option that you can add to the JSON that fills the chart

 

 

IIRC: you may need to have this in an non persitable entity which is read and converted to JSON

https://plotly.com/javascript/reference/pie/#pie-textinfo

 

answered