Setting default legend position
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm defining some default print settings for my figures and I would like to set the default legend location as 'best'
% Print settings
set(groot, 'DefaultTextInterpreter', 'LaTeX');
set(groot, 'DefaultAxesTickLabelInterpreter', 'LaTeX');
set(groot, 'DefaultAxesFontName', 'LaTeX');
set(groot, 'DefaultLegendInterpreter', 'LaTeX');
set(groot, 'DefaultAxesBox', 'on');
what is the related command?
thanks!
0 commentaires
Réponses (1)
Clayton Birchenough
le 9 Sep 2019
Yes, to set the default location of the legend to best (in 2019a), use:
set(groot, 'defaultLegendLocation', 'best')
0 commentaires
Voir également
Catégories
En savoir plus sur Legend dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!