How to change tooltip font in Google GeoChart visualization API

It always defaults to Arial. Is there a way to generate SVG and change it dynamically?

+4
source share
2 answers

It seems like a problem with tooltip fonts in IE7 / 8, the following sets the size and font, but the numbers / data (not the label) still want to display the serif. Other browsers will pick this correctly:

tooltip: { textStyle: { fontName: 'verdana', fontSize: 12 } } 
+3
source

It is case sensitive, try "Verdana" with a capital of "V".

0
source

All Articles