Search code examples
rgoogle-visualizationgooglevis

Non-interactive GoogleVis charts


Is it possible for googleVis Package from R to generate Images as oppose to interactive charts? To create a GoogleVis Chart in R:

library(googleVis)
M <- gvisMotionChart(Fruits, "Fruit", "Year")
plot(M)

This initiates a browser and then it will plot an interative chart. Is there a way such that I can create a non-interactive image and plot it in R


Solution

  • Some hacks I found that could potentially be able to convert gvis charts to images:

    http://html2canvas.hertzen.com/

    https://gist.github.com/battlehorse/1333906