Reputation: 1277
Is it possible to show values instead of percentage in Google Chart PieChart slices?
Thanks,
Upvotes: 26
Views: 28592
Reputation: 55200
Yes. you can. Just set pieSliceText
in the options like this
var options = {
width: 450,
height: 300,
title: 'My Daily Activities',
pieSliceText: 'value'
};
Documentation: http://code.google.com/apis/chart/interactive/docs/gallery/piechart.html#Example
Upvotes: 53