style {plotly} | R Documentation |
Modify trace(s) of an existing plotly visualization. Useful when used in
conjunction with get_figure()
.
style(p, ..., traces = NULL)
p |
A plotly visualization. |
... |
Visual properties. |
traces |
numeric vector. Which traces should be modified? By default,
attributes place in |
Carson Sievert
p <- qplot(data = mtcars, wt, mpg, geom = c("point", "smooth")) # keep the hover info for points, but remove it for the line/ribbon style(p, hoverinfo = "none", traces = c(2, 3))