How do I prevent the legend from Auto Updating?

398 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2017 年 1 月 12 日
編集済み: MathWorks Support Team 2018 年 4 月 3 日
When I have a legend, and then add another plot to the graph, it is automatically added to the legend. How do I prevent legend from auto updating?

採用された回答

MathWorks Support Team
MathWorks Support Team 2018 年 11 月 13 日
編集済み: MathWorks Support Team 2018 年 4 月 3 日
Starting in R2017a, if a legend is present, it will auto-update with new plots added to the axes.
The legend has been changed so that by default it updates when data is added to or removed from a plot automatically. To prevent this behavior, set the legends "AutoUpdate" property.
Ex:
x = linspace(0,2*pi);
y = sin(x);
plot(x,y)
legend('sin(x)','AutoUpdate','off')
To affect all new legends, set the value on the root level. To affect all legends in a figure:
fig = figure;
set(fig,'defaultLegendAutoUpdate','off');
To exclude an individual plot from the legend, set the "Annotation" property':
p = plot(1:10,'DisplayName','Line Chart');
hold on
s = stem(1:10,'DisplayName','Stem Chart');
hold off
s.Annotation.LegendInformation.IconDisplayStyle = 'off'; % make the legend for step plot off
legend('show')
For more information about this change, refer to the release notes:
Also note that the "default" properties system inherits down the entire graphics hierarchy, as documented here:
One can set the same property on the graphics root and it will apply to all figures in that MATLAB session:
set(groot,'defaultLegendAutoUpdate','off')
The above line can also be added to the MATLAB startup script if the user wants it to apply it to every MATLAB session.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

製品


リリース

R2017a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by