You need to format in two places: data and axis. To format the data, use NumberFormatter:
var formatter = new google.visualization.NumberFormat({pattern: '#%'});
formatter.format(data, 1);
Format the axis values with the option vAxis.format:
vAxis: {
format: '#%'
}
source
share