Convert a ggplot to a list.
gg2list(
p,
width = NULL,
height = NULL,
tooltip = "all",
dynamicTicks = FALSE,
layerData = 1,
originalData = TRUE,
source = "A",
...
)
a 'built' plotly object (list with names "data" and "layout").
ggplot2 plot.
Width of the plot in pixels (optional, defaults to automatic sizing).
Height of the plot in pixels (optional, defaults to automatic sizing).
a character vector specifying which aesthetic tooltips to show in the tooltip. The default, "all", means show all the aesthetic tooltips (including the unofficial "text" aesthetic).
accepts the following values: FALSE
, TRUE
, "x"
, or "y"
.
Dynamic ticks are useful for updating ticks in response to zoom/pan/filter
interactions; however, there is no guarantee they reproduce axis tick text
as they would appear in the static ggplot2 image.
data from which layer should be returned?
should the "original" or "scaled" data be returned?
a character string of length 1. Match the value of this string
with the source argument in event_data()
to retrieve the
event data corresponding to a specific plot (shiny apps can have multiple plots).
currently not used