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'm using MATLAB to plot some data. I would like to create the legend so that it divides information into two types, say Type1 and Type2. Each type of data has several specific lines of data which i am plotting. Suppose that:

  • Type1 data has line1 and line2
  • Type2 data has line1 and line2 and line3

This would make a 5 line plot. Now for the legend i can do something like:

legend('Type1: line1','Type1: line2','Type2: line1', ...
       'Type2: line2','Type2: line3');

But that repeats the 'Types' and the best way would be something that would look like:

(final legend output)

  • Type1:
    • line1
    • line2
  • Type2:
    • line1
    • line2
    • line3

Thanks a lot. Hope you can help with my first question here :D

share|improve this question

1 Answer

up vote 2 down vote accepted

You may want to have a look at LEGENDFLEX that you can download from the Matlab File Exchange

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.