필터 지우기
필터 지우기

How to make all the legend appear in a plot?

조회 수: 43 (최근 30일)
Philippe Corner
Philippe Corner 2018년 2월 18일
답변: Thomas Rutten 2018년 12월 5일
Im using this code to plot X vector vs all the columns of the table on example.txt
C = readtable('example.txt', 'Delimiter',',');
X = 5:5:430;
for i=1:numel(X)
plot(X,C{:,i})
hold on
grid on
end
LegendString = cell(1,numel(X));
hold all
for k = 1:numel(X)
LegendString{k} = sprintf('%i',X(k));
end
legend(LegendString)
Why the plot is only showing me 50 legends and not all the 86 the code is asking?
  댓글 수: 3
Walter Roberson
Walter Roberson 2018년 5월 4일
auto_children does not apply at all if you pass in the handles of the items to legend: it only applies if you rely upon legend() to find the graphics objects for you.
Jan Kappen
Jan Kappen 2018년 5월 5일
Thanks for your answer! I made sure, this line hit. But it seems like the class matlab.graphics.illustration.Legend does this entry clipping when the property "Axes" is set, see line 340 in legend.m (R2018a). Probably during that assignment, the Property "String" of the legend will be set and limited to exactly the number plots in the Axes, but to max 50.
matlab.graphics.illustration.Legend is pcoded, so this is where the search ends. Very frustrating.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2018년 2월 18일
You can set the legend font size smaller, and you can set the legend Position in figure coordinates (but be aware that if you set Position then it will not automatically resize the axes to make room for it.)
However, you have a limited height or width to draw the legend into, and no matter how small you set the font, there will come a point where you have so many entries in the legend that they cannot fit in the allocated size. You should be considering whether it is reasonable to try to fit that much information into a legend().
I know that there are plans to try to improve legend layouts, but any such improvements will continue to be plagued with the problem of people trying to put too much information into a single graph.
  댓글 수: 2
Philippe Corner
Philippe Corner 2018년 3월 23일
편집: Walter Roberson 2018년 3월 23일
Mr Walter, could you check this question please? any help-advise would be great! https://la.mathworks.com/matlabcentral/answers/390255-how-to-modify-the-code-changing-the-intervals
Walter Roberson
Walter Roberson 2018년 3월 23일
Note: R2018a added the ability to put the legend into multiple columns.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Thomas Rutten
Thomas Rutten 2018년 12월 5일
I have exactly the same problem with having only 50 legends at maximum in a plot. It is a decision for users to plot a limited number of legends and not to Matlab. Of course, many legends will make graphics rather confusing, but I have circumstances that I need more than 50 legends. The two column option doesn't solve that, because it is still limited to 50.
Another option (set(gcf,'NextPlot','add'), newP = copyobj(c,newAx);etc.), which Walter showed somewhere else, works to show all legends, but the highlighting of Markers-Lines is limlited to the 'active' first 50 legends.
So Matlab, please solve this limitation problem of 50 legends (like it was in the past) and let users decide how many legends they want to project.

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by