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
panel.grid
The panel.grid argument seems to ignore the color argument (and probably arrow) from element_line() Minimal example:
color
arrow
element_line()
library(ggplot2) g <- ggplot(cars, aes(speed, dist)) + geom_point() new_line <- element_line(color = "blue", size = 2, linetype = 2, lineend = "round", arrow = grid::arrow())
Changes all attributes, but not color.
g + theme(panel.grid = new_line)
Going higher up the inhertance tree doesn't work
g + theme(line = new_line)
But going down does.
g + theme(panel.grid.minor = new_line)
The text was updated successfully, but these errors were encountered:
caca650
No branches or pull requests
The
panel.grid
argument seems to ignore thecolor
argument (and probablyarrow
) fromelement_line()
Minimal example:
Changes all attributes, but not color.
Going higher up the inhertance tree doesn't work
But going down does.
The text was updated successfully, but these errors were encountered: