Open trevorld opened 7 months ago
{ggplot2} 3.5.0 geoms were updated to accept grid.pattern() / gradient fills. The geoms in {ggridges} could also be updated to accept such fills:
{ggplot2}
grid.pattern()
{ggridges}
fill = alpha(data$fill, data$alpha)
fill = ggplot2::fill_alpha(data$fill, data$alpha)
You're welcome to prepare a PR.
{ggplot2}
3.5.0 geoms were updated to acceptgrid.pattern()
/ gradient fills. The geoms in{ggridges}
could also be updated to accept such fills:fill = alpha(data$fill, data$alpha)
withfill = ggplot2::fill_alpha(data$fill, data$alpha)