Markus Gesmann

Results 65 comments of Markus Gesmann

Sorry, I haven't used flex dashboard yet. Perhaps, stackoverflow can help here?

Isn't this already doable by specifying the colour and size variables? Here is an example: ``` library(googleVis) CityPopularity$Area = 1:6 plot(gvisGeoChart(CityPopularity, locationvar='City', colorvar='Popularity', sizevar = 'Area', options=list(region='US',displayMode='markers')) ```

Can you please provide a self-contained minimal reproducible example. On 3 February 2017 at 12:16, deep2843 wrote: > Hi, I have a shiny app which is using googleVis package in...

The above works fine for me. Can you please provide a self-contained minimal reproducible Shiny example.

Not from me personally, but hopefully others will help out.

I am sorry, but I don't know how to help you here. Perhaps, stackoverflow is a better place for this kind of question, as it touches on shiny, shinyFiles as...

I would recommend that you use `gvisGeoChart` instead of `gvisGeoMap` as it doesn't rely on Flash. The interface is very much the same. If I understand you correctly then you...

Have you checked the online documentation from Google: https://developers.google.com/chart/interactive/docs/gallery/geochart?hl=en? The Google Chart Forum might also be able to help: https://groups.google.com/forum/#!forum/google-visualization-api Unfortunately, I think I can't be of much more assistance...

I don’t understand, why you can’t use the options argument in the reactive environment. > On 9 Nov 2016, at 23:57, daheelee [email protected] wrote: > > Hello, > > I...