Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

4 Answers

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

share|improve this answer

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')
share|improve this answer

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

share|improve this answer

Besides the submissions mentioned by @gnovice, there is another one on the MathWorks File Exchange which also create multi-column legends

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.