r - How to set ggvis to use canvas renderer by default? -


is possible make ggvis widget use canvas renderer default (instead of svg)?

set renderer canvas in set_options:

library(ggvis)  mtcars %>%   ggvis(~wt, ~mpg) %>%   layer_points() %>%   set_options(width = 300, height = 200,                padding = padding(10, 10, 10, 10),               renderer = "canvas") 

Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -