Hi, i want implement a GeoChart https://developers.google.com/chart/interactive/docs/gallery/geochart?hl=de
i have a DataTable with some Date Values but it seems that a GeoChart can not handle Date values, is this true ? then i have tried to stringify my Date Values, this works but then the tooltips did only show the value! if you go to this page https://developers.google.com/chart/interactive/docs/gallery/geochart?hl=de and open the first jsfiddle link. The Tooltip shows for Canada: Canada Popularity: 500 this is correct, but if i replace the numbers with strings like this: var data = google.visualization.arrayToDataTable([ ['Country', 'Popularity'], ['Germany', 'A'], ['United States', 'B'], ['Brazil', 'C'], ['Canada', 'D'], ['France', 'E'], ['RU', 'F'] ]); it shows only "D" but i want this: Canada Popularity: D how can i fix this !? The same problem is with the latitude and longitude mode! i use a DataWrapper and i build my own view, i do the stringify like this: var latLongView=[0,1]; var xyViewStringify = [ { sourceColumn: 2, type: 'string', calc: 'stringify' } ]; //----------------------------------- latLongView.push.apply(latLongView, xyViewStringify); this works but the problem is the wrong tooltip!! -- 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/d/optout.
