Closed
Description
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")