ggfx icon indicating copy to clipboard operation
ggfx copied to clipboard

Specify blur area: with_blur

Open zx8754 opened this issue 3 years ago • 0 comments

See related SO post:

Something like below:

library(ggplot2)
library(ggfx)

ggplot(mtcars, aes(x = disp, y = mpg)) +
  with_blur(
    geom_line(),
    sigma = unit(1, 'mm'),
    xmin = 100, xmax = 200, ymin = 15, ymax = 30 # specify rectangular area
  )

zx8754 avatar Jul 22 '21 12:07 zx8754