How can I modify the length of the lines in a legend?
305 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2010-9-1
编辑: MathWorks Support Team
2024-10-16
How can I reduce the length of the lines shown in the legend of a MATLAB plot?
采纳的回答
MathWorks Support Team
2024-10-8
编辑:MathWorks Support Team
2024-10-16
MATLAB R2024b and later:
The following example code illustrates how you can reduce the length of the lines shown in the legend of a plot in MATLAB R2024b and later. Using multiple outputs from the "legend" command is discouraged and will give warnings in MATLAB R2024b. Additionally, you can leverage the legend's "IconColumnWidth" property to adjust the width allocated to the icon of the legend.
p=plot(1:10);
l=legend(p);
l.IconColumnWidth = 10;
In cases when all the icons are markers, the value of "IconColumnWidth" will be adjusted to be narrow automatically. In all other cases, it will have its old default value which can still be adjusted.
scatter(rand(3,10), rand(3,10), 'filled');
l = legend;
MATLAB R2014b to MATLAB R2024a:
h1 = plot(1:10);
[hh,icons,plots,txt] = legend({'Line 1'});
p1 = icons(1).Position;
icons(1).Position = [0.3 p1(2) 0];
icons(2).XData = [0.05 0.2];
MATLAB R2014a and before:
plot(rand(2))
lh = legend('Line 1','Line 2');
ch = get(lh,'children');
xd = get(ch(2),'XData');
set(ch(2),'XData',[xd(1)+0.2 xd(2)])
3 个评论
Cris LaPierre
2021-1-28
Thank you Quan. Your code worked for me to change the legend length.
Rik
2021-2-4
@Gergely Szabó did you use the code for R2014a and before? As you can see below, the example runs as expected on R2020b.
h1 = plot(1:10);
[hh,icons,plots,txt] = legend({'Line 1'});
h2 = plot(1:10);
[hh,icons,plots,txt] = legend({'Line 1'});
p2 = icons(1).Position;
icons(1).Position = [0.3 p2(2) 0];
icons(2).XData = [0.05 0.2];
更多回答(2 个)
Brandon Ballard
2021-7-17
Just to make it easier for people to find I have copied the approach listed in the comments which works for versions of Matlab R2018b onwards (I am currently using Matlab 2021a):
The simplest way to do it is to use: -
leg = legend('Plot1','Plot2',...);
leg.ItemTokenSize = [x1,x2];
By default x1=30 and x2=18 so put larger or smaller numbers as x1,x2 to increase or decrease the legend line size.
I can only modulate the length, not the width by using" leg = legend('Plot1','Plot2',...);
leg.ItemTokenSize = [x1,x2];"
0 个评论
Afiq Azaibi
2024-10-7
Using multiple outputs from the legend command is discouraged and will start warning in R2024b. Also starting in R2024b, you can leverage the legend's IconColumnWidth property to adjust the width allocated to the icon of the legend.
p=plot(1:10);
l=legend(p);
l.IconColumnWidth = 10;
In cases when all the icons are markers, the value of IconColumnWidth will be adjusted to be narrow automatically. In all other cases, it will have its old default value which can still be adjusted.
scatter(rand(3,10), rand(3,10), 'filled');
l = legend;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!