Hello Daniel,
I have a csv file that includes "Country","NPS", "CSAT" and "Intention" as columns. In the country column, I give the exact names of the countries that I want to map. On NPS column I include the average net promoter score that corresponds to each country. The same logic is with CSAT and Intention column. Note that I measure NPS, CSAT and Intention using a scale from 0 to 10. I run the following command to map my data:
G <- gvisGeoChart(BrandEvaluationSurvey, "Country", "NPS",options=list(width=300, height=300))
T <- gvisTable(BrandEvaluationSurvey,options=list(width=220, height=300))
GT <- gvisMerge(G,T, horizontal=TRUE)
plot(GT)
And I get the following result:

What I would like to do is to add all the details on the window that pops up when you move the mouse to a specific country. So, not only the NPS, as you see on the picture above, but also CSAT and LTR values. Is there any way that I can write the command differently and give me the result that I want? Also, as you can see on the picture above, the scale is from 2.5 to 10. I is there any that I can change the scale to be from 0 to 10?
Thank you very much,
Dimitris.