Align text of different entries in legend
20 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Marcel345614
il 5 Lug 2021
Risposto: Scott MacKenzie
il 5 Lug 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 Commenti
Risposta accettata
Scott MacKenzie
il 5 Lug 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');
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Legend in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!