Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

theme_solid

Theme with nothing other than a background color


Description

Theme that removes all non-geom elements (lines, text, etc), This theme is when only the geometric objects are desired.

Usage

theme_solid(base_size = 12, base_family = "", fill = NA)

Arguments

base_size

Base font size.

base_family

Ignored, kept for consistency with theme().

fill

Background color of the plot.

See Also

Examples

library("ggplot2")

ggplot(mtcars, aes(wt, mpg)) +
 geom_point() +
 theme_solid(fill = "white")

ggplot(mtcars, aes(wt, mpg)) +
  geom_point(color = "white") +
  theme_solid(fill = "black")

ggthemes

Extra Themes, Scales and Geoms for 'ggplot2'

v4.2.4
GPL-2
Authors
Jeffrey B. Arnold [aut, cre] (<https://orcid.org/0000-0001-9953-3904>), Gergely Daroczi [ctb], Bo Werth [ctb], Brian Weitzner [ctb], Joshua Kunst [ctb], Baptise Auguie [ctb], Bob Rudis [ctb], Hadley Wickham [ctb] (Code from the ggplot2 package.), Justin Talbot [ctb] (Code from the labeling package), Joshua London [ctb]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.