watermark: Add a watermark annotation layer for a ggplot2 object

View source: R/watermark.R

watermarkR Documentation

Add a watermark annotation layer for a ggplot2 object

Description

Add a watermark annotation layer for a ggplot2 object

Usage

watermark(
  watermark,
  fontsize = 120,
  colour = "grey90",
  alpha = 0.1,
  fontface = "bold",
  angle = 22
)

Arguments

watermark

String to be added as watermark

fontsize

Font size

colour

Font colour

alpha

Alpha (transparency; lower number = more transparent)

fontface

Font face ("bold" by default)

angle

Angle of the watermark

Examples

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")

grattan/grattantheme documentation built on June 28, 2023, 1:50 p.m.