Is there a way to vertical align the symbols in a legend relative to the first line of the corresponding text?
plot(table(iris$species))
legend('right',c('A','B','long\ntext'), fill = colors(3))
The labels A
and B
are vertically aligned to the corresponding symbols, but the symbol corresponding to the the third label (long text
with a line-break between the words) is aligned to the middle of this label.
I would prefer if the symbol would be aligned to the first line of the label (i.e. long
).
The easiest way is to put a blank line before the text. That way, the first line of text will be aligned with the box: