我有以下代码:
X = 0:pi/100:0.25*pi;
Y1 = sin(X);
Y2 = cos(X);
Y3 = tan(X);
fh = figure('toolbar','none','menubar','none','Units','characters');
Pan1 = uipanel(fh,'Units','normalized','Position',[0 0 0.5 1],'title',...
'Panel1');
Pan2 = uipanel(fh,'Units','normalized','Position',[0.5 0 0.5 1],'title',...
'Panel2');
haxes = axes('Parent',Pan2,'Units', 'normalized','Position',...
[0.125 0.1 0.75 0.75]);
hplot = plot(haxes,X,Y1,X,Y2,X,Y3);
xlabel(haxes,'Time (second)');
ylabel(haxes,'Amplitude (meter)');
title(haxes,'Trigonometric functions');
Ley = {'Sine function','Cosine function','Tangent function'}; %# legend's strings values
legend(haxes,Ley,'Location','SouthOutside');
[FileName,PathName,FilterIndex] = uiputfile('*.bmp;*.png;*.jpg;*.tif','Save as');
ftmp = figure('Menu','none','Toolbar','none','Units','normalized',...
'Position',[-1000 -1000 1 1]);
set(gcf,'PaperPositionMode','auto');
set(gcf,'InvertHardcopy','off');
new_axes = copyobj(haxes, ftmp);
legend(new_axes,Ley,'Location','SouthOutside','FontSize',8);
set(new_axes,'Units','normalized','Position',[0.1 0.1 0.8 0.8]);
fmtgraf = {'-dbmp','-dpng','-djpeg','-dtiff'};
fmt = fmtgraf{FilterIndex};
print(ftmp,fmt,FileName,'-r0');
delete(ftmp);
delete(fh);
如代码中所示,命令行
图例(new_axes,莱伊, '位置', 'SouthOutside', '字号',8);
在命令行
之前运行 set(new_axes,'Units','normalized','Position',[0.1 0.1 0.8 0.8]);
正因为如此,图像看起来被它的低部分切割,如下所示(与属性/值'FontSize'的存在或不存在无关)
如果命令行
legend(new_axes,Ley,'Location','SouthOutside','FontSize',8);
在命令行
之后运行 set(new_axes,'Units','normalized','Position',[0.1 0.1 0.8 0.8]);
现在图像被其低部分切割,但在这种情况下,既没有看到xlabel文本也没有看到图例框(如下所示)
如果'FontSize',8
被抑制,则一切正常。如果我希望图例的尺寸较小,我该如何解决这个问题呢?
答案 0 :(得分:2)
它也适用于我......你必须明白LEGEND基本上会在图中创建另一个轴实例。
现在您使用'SouthOutside'
位置放置它,因此它会尝试调整现有轴的大小以将其自身置于其下方,但如果您没有留下足够的空间,则可能不适合,特别是因为您使用'normalized'
单位,根据父容器大小,让轴自动调整大小。
尝试提前略微缩小主曲线轴,为传奇提供更多空间......
命令的顺序也很重要。比较一下:
new_axes = copyobj(haxes, ftmp);
legend(new_axes, Ley, 'Location','SouthOutside', 'FontSize',8);
set(new_axes, 'Units','normalized', 'Position',[0.1 0.1 0.8 0.8]);
针对:
new_axes = copyobj(haxes, ftmp);
set(new_axes, 'Units','normalized', 'Position',[0.1 0.1 0.8 0.8]);
legend(new_axes, Ley, 'Location','SouthOutside', 'FontSize',8);
正如我所提到的,LEGEND只创建另一个轴。因此,为了最终控制,您可以自己手动定位图中的所有轴(指定实际位置,而不是依赖于'Location'
属性公开的legend
属性的“outside”值} function)..这是一个例子来说明:
%# create a normal plot
clf
hAx = axes();
plot(hAx, rand(10,3))
xlabel(hAx, 'xlabel'), title(hAx,'title')
%# add a legend on the inside and record the axis outerposition (in pixels)
hLgnd = legend(hAx, {'1' '2' '3'}, 'Location','South', 'FontSize',8);
set(hLgnd, 'Units','pixels')
op = get(hLgnd,'OuterPosition');
set(hLgnd, 'Units','normalized')
%# resize the plot axis vertically to make room for the legend
set(hAx, 'Units','pixels')
pos = get(hAx,'Position');
ins = get(hAx,'TightInset');
set(hAx, 'Position',[pos(1) pos(2)+op(4) pos(3) pos(4)-op(4)])
set(hAx, 'Units','normalized')
%# move the legend to the bottom in the free space
set(hLgnd, 'Units','pixels')
set(hLgnd, 'OuterPosition',[op(1) (pos(2)-ins(2))/2 op(3) op(4)])
set(hLgnd, 'Units','normalized')
尝试不同的图形尺寸并重新运行代码。请注意,如果您希望轴在调整图形大小时自动正确调整其大小,则必须执行与{{}中的上述代码类似的操作。 1}}图的事件处理程序,即:
'ResizeFcn'
答案 1 :(得分:1)
它适用于我:
我注意到我们的屏幕截图有不同的宽高比。也许您的显示器具有宽屏宽高比?您应用于新轴的'units'
'normalized'
选项将相对于其显示的监视器设置其尺寸。当你创建一个更宽的图形时,也许MATLAB会从底部剪切图例(它的图形并不完美)。
我的建议是尝试使用'units'
'pixels'
直接设置轴单位,并使用更平方的宽高比。
另一种选择可能是使用'orientation'
'horizontal'
创建图例,这会以较低的高度展开项目,或者将其放在图表中,可能是'SouthEast'
。