Sqeezer
Sqeezer

Reputation: 1277

Google Piechart: How to show values instead of percentage?

Is it possible to show values instead of percentage in Google Chart PieChart slices?

Thanks,

Upvotes: 26

Views: 28592

Answers (1)

codeandcloud
codeandcloud

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

Related Questions