theme_solid | R Documentation |
Theme that removes all non-geom elements (lines, text, etc), This theme is when only the geometric objects are desired.
theme_solid(base_size = 12, base_family = "", fill = NA)
base_size |
Base font size. |
base_family |
Ignored, kept for consistency with |
fill |
Background color of the plot. |
Other themes:
theme_base()
,
theme_clean()
,
theme_foundation()
,
theme_igray()
,
theme_par()
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.