Bar plot axes size using text in X axis
5 ビュー (過去 30 日間)
古いコメントを表示
Abhinav Karthik Sridhar
2019 年 10 月 18 日
コメント済み: Sulaymon Eshkabilov
2019 年 10 月 21 日
So, I tried plotting a bar plot for an array with 25 items. I linked it with a unique string on the X-axis, but when I plot the Bar plot - I cannot see all the unique values eventhough I tried rotating the axis to 90 deg, reduced size of gca. Attached my code!
Basically, I want a unique value seen in my x axis corresponding to the value in Y axis (display of all X axis values).
How can I achieve this?
0 件のコメント
採用された回答
Sulaymon Eshkabilov
2019 年 10 月 19 日
編集済み: Sulaymon Eshkabilov
2019 年 10 月 19 日
Hi
Here is the solution for x axis:
xticks(1:numel(neworder(:,1)))
F = neworder(:,1);set(gca,'FontSize',4);
xtickangle(90);
xticklabels(F);
Good luck.
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!