Description Usage Arguments Examples
View source: R/m_theme_void_fill.R
Title
1 | theme_void_fill(fill = "linen", color = fill)
|
color |
1 2 3 4 5 6 7 8 9 10 11 12 13 | ggplot(cars) +
aes(x = speed) +
aes(y = dist) +
geom_point(color = "plum4") +
theme_void() +
theme(plot.background = ggplot2::element_rect(fill = "plum1", color = "plum1"),
panel.background = ggplot2::element_rect(fill = "plum1", color = "plum1"))
ggplot(cars) +
aes(x = speed) +
aes(y = dist) +
geom_point(color = "plum4") +
theme_void_fill(fill = "plum1")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.