![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/625153/image.png)
Different rotations of XLabels
조회 수: 3 (최근 30일)
이전 댓글 표시
How can I have the first six XLabels having a rotation of 0 while the last two XLabels get a rotation of 90? Otherwise the last XLabels are not readable.
I have tried splitting the x axis into two lines on top of each other, however I can only find out to construct a two line x axis with labels at the same ticks and not six labels for the first six ticks and two labels for the last ticks.
/Julie
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/625118/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/625123/image.png)
댓글 수: 0
채택된 답변
Robert U
2021년 5월 21일
Hi Julie,
One way to rotate single XTickLabel Strings is to replace them by text(). Advantage over annotation() is that the text is tied to the actual value of the axes.
fh = figure;
ah = axes(fh);
xData = [3:12];
yData = [1:10];
plot(ah,xData,yData,'o');
ah.XTickLabel = []';
labels = {'2019','2020','2021','2022','2023','2024','2025','2026','TRY','SRY'}';
rotLabels = [zeros(1,8),90,90];
offsetLabel = -0.5;
for ik = 1:length(ah.XTick)
text(ah,'String', labels{ik}, 'Position', [xData(ik) yData(1)+offsetLabel],'VerticalAlignment','middle','HorizontalAlignment','center','Rotation',rotLabels(ik));
end
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/625153/image.png)
Kind regards,
Robert
댓글 수: 3
Adam Danz
2021년 5월 22일
- Actual XTickLabels are used except for the final two labels. This is a bit more efficient and cleaner, letting the built-in axis properties do a lot of the work.
- It's very important that the xlim and ylim are set and remain set when using text objects as tick labels. Text objects are in data units so if the axis limits change then the text labels will move with the data!
- Text objects used as labels copy the axes' font properties. You can add linkprop if you think the axes font properties may change.
x = rand(20,30);
ax = gca();
boxplot(x)
ax.XTick = unique([1:5:size(x,2), size(x,2)-[1,0]]);
ax.XTickLabel = [string(2021:5:2046),"",""];
ax.XTickLabelRotation = 0;
xlim(xlim(ax)) % important (works better than setting X/YLimMode)
ylim(ylim(ax)) % important
t1 = text(ax.XTick(end-1), ...
min(ylim(ax))-range(ylim(ax))*.022, ... %shifted down a bit (2.2% of ylim range)
'TRY',...
'HorizontalAlignment','Right', ...
'VerticalAlignment','Middle',...
'Rotation',90,...
'FontName', ax.FontName, ...
'FontSize', ax.FontSize);
text(ax.XTick(end), ...
t1.Position(2), ...
'SRY',...
'HorizontalAlignment','Right', ...
'VerticalAlignment','Middle',...
'Rotation',90,...
'FontName', ax.FontName, ...
'FontSize', ax.FontSize)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Geographic Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!