watermark.Rd
Add a watermark annotation layer for a ggplot2 object
watermark(
watermark,
fontsize = 120,
colour = "grey90",
alpha = 0.1,
fontface = "bold",
angle = 22
)
String to be added as watermark
Font size
Font colour
Alpha (transparency; lower number = more transparent)
Font face ("bold" by default)
Angle of the watermark
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")