Drawing a line without creating a legend entry
101 次查看(过去 30 天)
显示 更早的评论
In the MWE below, the green line shows up as the second row of the legend box. I want to be able to draw lines and incrementally build the legend as illustrated, but without having the line enter into the legend as it does in this example. Obviously, if I do all the plots before drawing the lines, and then use AutoUpdate off, I can accomplish this, but sometimes I need to intersperse lines and plots as in the example.
Is there any way to do this?
close all ; hold on;plot(1:10);Legend = {'line 1'};h=line([1,10],[6,6],'Color','g');hold on;plot(10:-1:1);Legend=[Legend,'line 2'];legend(Legend)
0 个评论
采纳的回答
Walter Roberson
2020-8-14
You can set the IconDisplayStyle of the Annotation property in order to exclude a graphics object from automatic legend.
更多回答(1 个)
Carlos Alberto Diaz Galindo
2023-2-16
编辑:Walter Roberson
2024-3-13
I think it's easier this way
plot(x1,y1)
hold on
plot(x2,y2)
h = legend('a','b')
h.AutoUpdate = 'off'
hold on
plot(x3,y3)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!