Changing length of bar in legend

조회 수: 20 (최근 30일)
Steven
Steven 2014년 10월 24일
댓글: Steven 2014년 10월 28일
Here is discussed how to change the length of the bar in Legend axes, when a bar graph is plotted.
But how do you apply the code discussed there to a bar graphs with multiple bars per x tick?
For example on,
bar([1,2;3,4])
legend('one','two')
Thanks!

채택된 답변

Kelly Kearney
Kelly Kearney 2014년 10월 27일
It can be done pretty easily with my legend-reformatting function, legendflex:
bar([1,2;3,4]);
legendflex(gca, {'one','two'}, 'xscale', 0.5)
  댓글 수: 3
Kelly Kearney
Kelly Kearney 2014년 10월 27일
Two options... either rename legendflex_pre2014b.m to legendflex.m (and don't download my more recent version of legendflex.m).
Or just add all 3 functions to your path, then call legendflex... it will fall back on the pre2014b version automatically if it determines that you're running an older version of Matlab. This latter method is the one I intended, since that way everything will still work properly if you ever upgrade Matlab to a version with the new handle graphics.
Steven
Steven 2014년 10월 28일
It works! Thanks a lot!

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

추가 답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 10월 24일
You can change the position
bar([1,2;3,4])
h=legend('one','two')
pos=get(h,'position')
new_pos=pos
new_pos(3)=pos(3)+0.4 % This is the x length
new_pos(1)=pos(1)-0.4 % The x position
set(h,'position',new_pos)
  댓글 수: 1
Steven
Steven 2014년 10월 27일
Thanks for reply!
But why do you want to change the position? Is it possible to change the size of the boxes in the legends, making the overall size of the legend smaller, but keeping all else equal?

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


Robert Cumming
Robert Cumming 2014년 10월 27일
You can change the fontSize property which makes it smaller.
Otherwise if your using pre 2014b you can get to all the properties through the legend handle. Since the legend is built on a axes you can alter the axes children

카테고리

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