I have a plot with several lines r开发者_如何学Cepresenting different columns of data, the legend is being arrange as a vertical column, but I want to place it at the bottom of the chart and arrange the keys horizontally, can it be done? Thanks!
It does now. Just use:
opts(legend.position="bottom", legend.direction="horizontal")
Since version 0.9.2, opts
has been replaced by theme
:
theme(legend.position = "bottom", legend.direction = "horizontal")
Unfortunately not in the current implementation of ggplot2. Hadley has it on his to-do I think :-)
You can always position the legend manually
opts(legend.position=c(0.5,0.5))
but the keys stays vertical :-/
精彩评论