Remove The Percentage From Google Pie Chart Tooltip

asp.net, c#, google-visualization, jquery, json

Solution

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'
        }
    };

Problem

How To Remove The Percentage From Google Charts Tooltip For Example i want remove 33.33% from this tooltip only show the value

Original source

Related problems