plotly.R
plotly.R copied to clipboard
Ggpattern integration.
When working with ggplot2 I would like to render a textured filling with ggpattern and more particularly with ggpattern::geom_polygon_pattern().
library(ggplot2)
library(ggpattern)
library(plotly)
g <- ggplot(mtcars) +geom_boxplot_pattern(aes(x=mpg))
ggplotly(g)
Any word on this yet?