arun
arun

Reputation: 319

Remove The Percentage From Google Pie Chart Tooltip

How To Remove The Percentage From Google Charts Tooltip

For Example i want remove 33.33% from this tooltip only show the value i want remove 33.33% from this tooltip only show the value

Upvotes: 5

Views: 7416

Answers (1)

Anto Jurković
Anto Jurković

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

Related Questions