Reputation: 319
How To Remove The Percentage From Google Charts Tooltip
For Example i want remove 33.33% from this tooltip only show the value
Upvotes: 5
Views: 7416
Reputation: 11258
Set tooltip.text
to value
. See gogle docs pie chart. For example:
var options = {
'title': 'Pie chart title',
'width': 800,
'height': 600,
'is3D': false,
tooltip: {
text: 'value'
}
};
Upvotes: 9