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: <https://lh3.googleusercontent.com/-XSl9ph05lqQ/WEw0l6obbsI/AAAAAAAAAB0/-2GPfh5FFBQ13H2SI_vt5AJrvSu3Ny0EwCLcB/s1600/Country%2BBreak%2BDown.png> 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. Τη Τρίτη, 30 Αυγούστου 2016 - 4:28:17 μ.μ. UTC+2, ο χρήστης Daniel LaLiberte έγραψε: > > I just updated Google Charts v45 regarding the following: > > * For the flash-based charts, GeoMap and MotionChart, the swfobject.js has > been updated to use the latest version 2.2. There should be no visible > changes in Chart features due to this update. By the way, you should > probably switch from the old flash-based GeoMap to the new and much more > feature-rich GeoChart. A replacement for MotionChart is planned as well. > > * For the flash-based AnnotatedTimeline, we are now replacing it with the > AnnotationChart, which has been under development for a couple years, and > appears stable. Almost all the features of the AnnotatedTimeline should > apply to the AnnotationChart with no changes required in your code, > although the look and feel is different. The AnnotationChart uses no > flash code, and is built on top of the CoreChart, ChartRangeFilter, and > Table chart. > > Let us know of any problems you experience. > > -- > Daniel LaLiberte <https://plus.google.com/100631381223468223275?prsrc=2> > [email protected] <javascript:> 5CC, Cambridge MA > -- 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 https://groups.google.com/group/google-visualization-api. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/d07b1386-350d-44e2-93f5-e600bdeb3750%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
