Google Pie Chart show both Percentage and Values

Lemo picture Lemo · Mar 12, 2014 · Viewed 21.8k times · Source

How to display both Percentage and Values in Google Pie Chart ?

Answer

user4756986 picture user4756986 · Apr 7, 2015

You can set pieSliceText as value-and-percentage to display both Value and Percentage.

var options = {
   pieSliceText: 'value-and-percentage'
};
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);

Please note that this option is currently undocumented (see this), so please use at your own risk.

http://jsfiddle.net/6M2sH/301/