You need to use a formatter on the DataTable column, like this:
var data = new google.visualization.DataTable();
// populate the DataTable
....
// format the second column in the DataTable
var formatter = new google.visualization.NumberFormat({pattern: '#,###%'});
formatter.format(data, 1);