Remove Percentage of Google Pie Chart Chart Tip

How to remove percentage from Google Charts tooltip

For example, I want to remove 33.33% from this tooltip, showing only the value i want remove 33.33% from this tooltip only show the value

+4
source share
1 answer

Set tooltip.textto value. See the graphical diagram of gogle docs. For example:

    var options = {
        'title':  'Pie chart title',
        'width':  800,
        'height': 600,
        'is3D':   false,
        tooltip: {
            text: 'value'
        }
    };
+9
source

Source: https://habr.com/ru/post/1524461/


All Articles