theme_vlaanderen2015 {INBOtheme} | R Documentation |
The theme in compliance with the Vlaanderen style guide version >= 2015.
theme_vlaanderen2015(base_size = 12, base_family = "", transparent = FALSE)
base_size |
Base fontsize |
base_family |
Base fonttype |
transparent |
Make backgrounds transparent. FALSE: all backgrounds are white, TRUE: all backgrounds are transparent. You can pass a vector to transparent. In that case, it will check weither the values "plot", "panel" and/or "legend" are present. The according items will be transparent. Transparent panel will use grey instead of white gridlines. |
Thierry Onkelinx, Nicole De Groof
library(ggplot2) p <- ggplot(mtcars, aes(x = mpg, y = drat)) + geom_point() p.vl <- p + theme_vlaanderen2015()