ggthemes (version 3.3.0)

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

Other themes: theme_base, theme_foundation, theme_igray, theme_par

Examples

Run this code
library("ggplot2")
(ggplot(mtcars, aes(wt, mpg))
 + geom_point()
 + theme_solid(fill = "white"))

Run the code above in your browser using DataCamp Workspace