Clearing legend in GUI plot
显示 更早的评论
Hello all,
I'm working on my first GUI and I am having trouble getting the legend to clear/hide when I hide a figure. I am able to hide the axes and the data plot using 'cla' but I can't figure out how to make the legend go away.
Any thoughts would be much appreciated! -Amanda
回答(2 个)
Azzi Abdelmalek
2013-8-21
编辑:Azzi Abdelmalek
2013-8-21
legend('hide')
%for your GUI it is:
legend(handles.axes1,'hide')
2 个评论
chlor thanks
2016-8-11
This works for my question too! Thanks Azzi!
Abdurrehman
2017-7-13
Jazakallah o khair dear Azizi
KAE
2017-7-18
If you instead want to delete the legend from your GUI rather than hide it,
legend(handles.axes1, 'off');
类别
在 帮助中心 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!