How can the space between lines in multi-line legend labels be increased? According to help legend options, this is supposed to be controlled with the linegap() option. However, the two graphs below look the same. What am I doing wrong?
I also tried rowgap() but according to the documentation it controls the space between legend rows and has no effect on the graph, either. In my example the legend has only one row.
Code:
sysuse auto graph bar mpg weight, legend(label(1 "Line 1" "Line 2" "Line 3")) name(g1, replace) graph bar mpg weight, legend(label(1 "Line 1" "Line 2" "Line 3") linegap(*2)) name(g2, replace)
Code:
graph bar mpg weight, legend(label(1 "Line 1" "Line 2" "Line 3") rowgap(*2)) name(g3, replace)
Comment