Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I customize the positions of legend elements?

I have a figure with several plots and a legend. Is it possible to change the arrangement of the elements in the legend manually? For example, how could you make a two-column legend?

like image 740
zhidayat Avatar asked Apr 15 '11 08:04

zhidayat


People also ask

How do I change the legend position in MATLAB?

To move the legend to a different tile, set the Layout property of the legend. Determined by Position property. Use the Position property to specify a custom location.

How do I change the position of my legend in R?

You can place the legend literally anywhere. To put it around the chart, use the legend. position option and specify top , right , bottom , or left . To put it inside the plot area, specify a vector of length 2, both values going between 0 and 1 and giving the x and y coordinates.

How do I change the order of labels in legend?

Changing the order of legend labels can be achieved by reordering the factor levels of the Species variable mapped to the color aesthetic.


3 Answers

Of course this is possible. See an explanation here: http://undocumentedmatlab.com/blog/multi-column-grid-legend/

like image 125
Yair Altman Avatar answered Nov 01 '22 11:11

Yair Altman


To make a two-column legend, the general consensus seems to be that you need to create two separate legends and manually place them side by side. Solution simplified from discussion here.

x = 1:10;
y1 = rand(1, 10);
y2 = rand(1, 10);

h1 = plot(x, y1, '-');
hold on
h2 = plot(x, y2, '-.r');

ah1 = gca;
ah2 = axes('position',get(gca,'position'), 'visible','off');

legend(ah1, h1, 'Location', [0.5 0.85 0.15 0.05], 'y1')
legend(ah2, h2, 'Location', [0.7 0.85 0.15 0.05], 'y2')
like image 38
Richie Cotton Avatar answered Nov 01 '22 13:11

Richie Cotton


There are two submissions on the MathWorks File Exchange which create multi-column legends for you:

  • columnlegend by Simon Henin (which was a MATLAB Central Pick of the Week)
  • gridLegend - a multi column format for legends by Adrian Cherry
like image 42
gnovice Avatar answered Nov 01 '22 11:11

gnovice