Make x axis values not overlapping
7 次查看(过去 30 天)
显示 更早的评论
Goodafternoon,
I'm plottin some values with bar() and I have the x values that overlaps. I was wondering if there was a way to have the values on the x axis shifted among them so to not touch each other.
I'll try to make an example here after:
------------------------------------------------------------------- this is xaxis
5 7 9 11
6 8 10
thanks a lot
Anita
2 个评论
采纳的回答
Dave B
2021-11-11
You can make this kind of (multi-row) labelling work by relying on the TeX interpreter. Note this answer is a total rip-off of the answer here (not the accepted answer, but the one from Adam Danz).
plot(1:6)
row1 = {'1' '' '3' '' '5' ''};
row2 = {'' '2' '' '4' '' '6'};
labelArray = [row1; row2];
tickLabels = sprintf('%s\\newline%s\n', labelArray{:});
xlim([1 6])
xticks(1:6)
xticklabels(tickLabels)
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Distribution Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
