Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

blank page with Fruit data using gvisMotionChart #78

Closed
bkaniskan opened this issue Mar 13, 2018 · 3 comments
Closed

blank page with Fruit data using gvisMotionChart #78

bkaniskan opened this issue Mar 13, 2018 · 3 comments

Comments

@bkaniskan
Copy link

Practicing to learn googleVis and unfortunately I am getting blank page. When I used RStudio it is a separate tab not within viewer pane. In base R it is a blank page. I suspect that it might be some setting issues on my end but do not know. Any suggestions how I can fix it?

library(googleVis)
M <- gvisMotionChart(data=Fruits, idvar="Fruit", timevar="Date", chartid="ILoveFruit")
plot(M)

@bkaniskan bkaniskan changed the title blank page blank page with Fruit data using gvisMotionChart Mar 13, 2018
@mages
Copy link
Owner

mages commented Mar 13, 2018 via email

@mages mages closed this as completed May 10, 2019
@vshekharrc
Copy link

Allowing permissions to flash did not solve the problem to me. The page continues to be blank even after this. Any other suggestions to fix this issue, please?

@vshekharrc
Copy link

Allowing permissions to flash did not solve the problem to me. The page continues to be blank even after this. Any other suggestions to fix this issue, please?

Okay, I think I got the solution here. The problem was not with the flash settings for me. It was with the parameter , chartid, of the gvisMotionChart. The chartId should be a character string with no spaces in between as in the below line of code:

M = gvisMotionChart(Fruits, idvar = "Fruit", timevar = "Date", chartid = "I_lovemy_fruit")

plot(M)

and not like this:

M = gvisMotionChart(Fruits, idvar = "Fruit", timevar = "Date", chartid = "I love my fruit")

plot(M)

This resolved my issue!!. Hope this helps

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants