Export_fig legend issue where legend items are very close to each other
조회 수: 1 (최근 30일)
이전 댓글 표시
When I try to graph the below surface with a 'horizontal' 'north' legend, the tif file that is exported from export_fig has an issue where the horizontal legend items are squished up with each other such that they are almost overlapping. Is there a way to add some padding between the legend items? Maybe an extra space or something? Thanks.
x = [-10:10];
y = [-10:10];
Eq1 = @(x,y)(x + y);
Eq2 = @(x,y)(2.*x + y);
Eq3 = @(x,y)(3.*x + y);
Eq4 = @(x,y)(4.*x + y);
[X,Y] = meshgrid(x,y);
Z1 = Eq1(X,Y);
Z2 = Eq2(X,Y);
Z3 = Eq3(X,Y);
Z4 = Eq4(X,Y);
figure(1)
s1 = surf(X,Y,Z1);
hold on
s2 = surf(X,Y,Z2);
s3 = surf(X,Y,Z3)
s4 = surf(X,Y,Z4);
hold off
legend('Equation One','Equation Two','Equation Three','Equation Four','Location','north','Orientation','horizontal')
legend('boxoff')
export_fig Legend_Issue.tiff -m3 -q101 -nocrop
댓글 수: 0
답변 (1개)
Montree
2015년 1월 2일
use 'Location' or 'Position' for control the position of legend. for more example please see in matlab help. (search 'legend' in help)
참고 항목
카테고리
Help Center 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!