Skip to content
New issue

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

Cannot change color of gridlines with panel.grid #2352

Closed
eliocamp opened this issue Nov 24, 2017 · 0 comments
Closed

Cannot change color of gridlines with panel.grid #2352

eliocamp opened this issue Nov 24, 2017 · 0 comments
Labels
bug an unexpected problem or unintended behavior themes 💃

Comments

@eliocamp
Copy link
Contributor

The panel.grid argument seems to ignore the color argument (and probably arrow) from element_line()
Minimal example:

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)

@hadley hadley added bug an unexpected problem or unintended behavior themes 💃 labels Nov 30, 2017
@hadley hadley closed this as completed in caca650 Nov 30, 2017
@lock lock bot locked as resolved and limited conversation to collaborators Jun 18, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug an unexpected problem or unintended behavior themes 💃
Projects
None yet
Development

No branches or pull requests

2 participants