Learn R Programming

ggthemes (version 1.7.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(fill = NA)

Arguments

fill
Background color of the plot.

See Also

Other themes: theme_foundation; theme_igray

Examples

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

Run the code above in your browser using DataLab