watermark.Rd
Add a watermark annotation layer for a ggplot2 object
watermark(
watermark,
fontsize = 120,
colour = "grey90",
alpha = 0.1,
fontface = "bold",
angle = 22
)
library(ggplot2)
# First, start with a plot:
p <- ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point() + theme_grattan()
# Then add a watermark:
p + watermark("DRAFT")