set_options {ggvis} | R Documentation |
Set options for a ggvis plot
set_options(vis, width = NULL, height = NULL, keep_aspect = NULL, resizable = NULL, padding = NULL, duration = NULL, renderer = NULL, hover_duration = NULL)
vis |
Visualisation to modify |
width,height |
Width and height of plot, in pixels. Default is 600x400.
|
keep_aspect |
Should the aspect ratio be preserved? The default value is
|
resizable |
If TRUE, allow the user to resize the plot. The default
value is |
padding |
A padding object specifying padding on the top, right, left,
and bottom. See |
duration |
Duration of transitions, in milliseconds. |
renderer |
The renderer to use in the browser. Can be |
hover_duration |
The amount of time for hover transitions, in milliseconds. |
getOption
and options
, for getting and
setting global options.
default_options
to see the default options.
mtcars %>% ggvis(~wt, ~mpg) %>% layer_points() %>% set_options(width = 300, height = 200, padding = padding(10, 10, 10, 10)) # Display the default options str(default_options())