The GeoChart tooltips are not yet ported over to the HTML tooltip system, which you would need in order to format the tooltips the way you want.
On Monday, August 5, 2013 6:06:19 PM UTC-4, Bluestreak2k5 wrote: > > Oops, I'm currently trying this: > > http://chrisdblumberg.com/unemployment/ > > data.addColumn('string', 'TooltipText'); > var geoChart = new google.visualization.GeoChart(container); > var formatter = new google.visualization.PatternFormat('{1}'); > formatter.format(data, [0, 2]); > var view = new google.visualization.DataView(data); > view.setColumns([0, 1, { > type: 'string', > role: 'tooltip', > calc: function (dt, row) { > return 'Click for counties'; > > } > }]); > -- 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.
