anyway to place the text of annotation at its right side?
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi:
is there anyway to place the text of annotation at its right side?
![Untitled.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/144862/Untitled.jpeg)
below is my code to generate the figure above:
for i=1:1:5
anno=annotation('textbox');
anno.Units='pixel';
anno.Position=anno_posi{i};
anno.BackgroundColor=anno_color{i};
anno.EdgeColor='w';
end
Thanks!
Yu
0 commentaires
Réponses (1)
Walter Roberson
le 19 Jan 2019
annotation textbox have a HorizontalAlignment property that defaults to 'left' but can be set to 'right' or 'center'.
There is also a VerticalAlignment property.
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!