Is there a way to apply the same format to more than one column?
So instead of doing this:
var formatterDec = new google.visualization.NumberFormat(
{pattern: '###.#'});
formatterDec.format(data1, 2);
var formatterDec = new google.visualization.NumberFormat(
{pattern: '###.#'});
formatterDec.format(data1, 5);
Can't I do something like this:
var formatterDec = new google.visualization.NumberFormat(
{pattern: '###.#'});
formatterDec.format(data1, [2, 5]);
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.