We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Strip text on facetted plots is a bit hard to make out.
library(ggplot2) library(hrbrthemes) packageVersion("hrbrthemes") #> [1] '0.6.0' ggplot(mtcars, aes(mpg, hp)) + geom_point() + facet_wrap(~cyl) + theme_modern_rc() + labs(title = "Look, a plot", subtitle = "Something's off though", caption = "Wher's my strip text?")
Created on 2019-03-31 by the reprex package (v0.2.1)
The text was updated successfully, but these errors were encountered:
You can add a theme element to change the color of the text.
library(ggplot2) library(hrbrthemes) packageVersion("hrbrthemes") #> [1] '0.6.0'
ggplot(mtcars, aes(mpg, hp)) + geom_point() + facet_wrap(~cyl) + theme_modern_rc() + labs(title = "Look, a plot", subtitle = "Something's off though", caption = "Wher's my strip text?") + theme(strip.text = element_text(color = 'white'))
Sorry, something went wrong.
@jsprecher I am aware, but I raised this issue so that the strip text could be changed to be readable by default, and not require a manual tweak.
No branches or pull requests
Strip text on facetted plots is a bit hard to make out.
Created on 2019-03-31 by the reprex package (v0.2.1)
The text was updated successfully, but these errors were encountered: