Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.