As part of a Google App Script Dashboard, I have the following table:
var tableChart = Charts.newTableChart()
.setDataViewDefinition(Charts.newDataViewDefinition().setColumns([1,10,15]))
.build();
Column 10 is labelled "Percentage of Total" and in my google spreadsheet formatted as "0.00%". The tableChart however does not take the formatting into account and displays the value as "0.0000"
How does one set the formatting of a specific column in the tableChart to "0.00%"?
Regards Jann
A feature request has been added to the issue tracker, Issue 3063. Visit and star it to receive updates.