![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/674808/image.jpeg)
Align text of different entries in legend
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Marcel345614
le 5 Juil 2021
Réponse apportée : Scott MacKenzie
le 5 Juil 2021
How can I align the text of different entries in the legend, e.g. align it with respect to the dot ?
legend('h=1.5m','h=10.5m','h=100.5m')
Thanks a lot!
0 commentaires
Réponse acceptée
Scott MacKenzie
le 5 Juil 2021
A simple solution is to use a sans serif font, such as courier, and pad with spaces:
% test data
d = rand(3,5);
bar(d');
labels = { ' h=1.5 m',' h=10.5 m','h=100.5 m' };
h = legend(labels, 'fontname', 'courier', 'fontweight', 'b');
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/674808/image.jpeg)
0 commentaires
Plus de réponses (0)
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!