I have a legend at the bottom of a graph in ggplot2
, on two lines. I need to increase the horizontal space between items.
Currently the code is:
p + theme(legend.key = element_blank(),
legend.position = "bottom",
legend.title = element_blank(),
legend.direction = "horizontal") +
guides(linetype = guide_legend(ncol = 3,keywidth=4))
But the resulting items are too close:
Any suggestion?