How to change the position of a shared axis label in a TiledChartLayout?
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
yonatan s
am 25 Aug. 2020
Beantwortet: Divija Aleti
am 31 Aug. 2020
Hi,
Given T is a handle to a TiledChartLayout, I tried:
T.XLabel.Position=[val val val val]
but since there is no Position field for class 'matlab.graphics.layout.Text', it isn't working.
Thanks.
2 Kommentare
Luna
am 25 Aug. 2020
Can you please share a full code of your plot so that we can run and see what's happening and explain the position change you want to do?
Akzeptierte Antwort
Divija Aleti
am 31 Aug. 2020
For a tiled layout, changing the horizontal and vertical alignment properties of the text is possible. Refer to this link:
A workaround would be to plot using subplots and then change the position of the text using the ‘Position’ property. Have a look at the following example:
figure
subplot(2,2,1)
plot(1:10)
subplot(2,2,2)
plot(1:10)
subplot(2,2,3)
plot(1:10)
subplot(2,2,4)
plot(1:10)
title('xlabel')
set(get(gca,'title'),'Position',[-1.5 -3],'FontSize',20)
Additional reference links:
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!