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
Didn't this use to lay out the legends horizontally?
ggplot(mtcars, aes(wt, mpg)) + geom_point(aes(colour = factor(cyl), shape = factor(vs))) + theme(legend.position = "bottom")
i.e. the same as:
ggplot(mtcars, aes(wt, mpg)) + geom_point(aes(colour = factor(cyl), shape = factor(vs))) + theme(legend.position = "bottom", legend.box = "horizontal")
The text was updated successfully, but these errors were encountered:
I don't think so. Hasn't it always been necessary to be explicit ?
Sorry, something went wrong.
But there's space to the left of the second legend - that doesn't seem right.
In any case, I think it should be changed, so I'll do it
5b70f2a
hadley
thomasp85
No branches or pull requests
Didn't this use to lay out the legends horizontally?
i.e. the same as:
The text was updated successfully, but these errors were encountered: