ggfx
ggfx copied to clipboard
Filters and Shaders for 'ggplot2'
I want to use multiple `colour` values from my dataset. But I can't.
See related SO post: - [How to blur part of a plot in ggplot?](https://stackoverflow.com/q/68482863/680068) Something like below: ```R library(ggplot2) library(ggfx) ggplot(mtcars, aes(x = disp, y = mpg)) + with_blur( geom_line(),...
I have only tried this with `with_outer_glow()`: `colour` works, but not `color` 🙂 ``` ggplot() + with_outer_glow( geom_point(aes(x = 0, y = 0), size = 10), color = "red", expand...
Currently no reference raster is created
Hi 👋, I want to apologize if this is the wrong place for this, since this likely is more of a feature-wish than an issue 😬. Basically, I love the...
Hi, I found what I think is a bug when you combine with_mask and with_shadow. I think the shadow is being put on top of the used path. ```r #...