Identical to theme_aib() but defaults to gridlines = "xy" for light
gray major gridlines. Use for data-dense plots where gridlines aid
readability.
Usage
theme_aib_grid(
base_size = 11,
base_family = NULL,
gridlines = c("xy", "x", "y", "none")
)Value
A ggplot2::theme() object.
Examples
library(ggplot2)
ggplot(mtcars, aes(mpg, wt)) +
geom_point() +
theme_aib_grid()