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
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
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!