I am trying to make the negative values in my data set red within the GeoCharts tooltip, and if possible, the positive values green. According to the documentation, this can be achieved by using the google.visualization.NumberFormat option negativeColor. Unfortunately this isn't working - is this because negative values can't be coloured red within tooltips? Or an error on my part? Here's my code:
var formatter = new google.visualization.NumberFormat({colorNegative:'red',colorPositive:'green',suffix:'%',fractionDigits:'1'});
formatter.format(data, 2);
And a link to docs referencing this option.