How to entirely show the first and last bars?

4 次查看(过去 30 天)
Hello,
I have the following Bar and code; I don't know why the first and last bars are not entierely displaying. Just the half of those bars are shown.
Please anyone can help me to fix this? Thank you in advance.
f = figure;
bb=bar(TimeSub_num,DecompS_p,'stacked');
bb(1).FaceColor = [0.9 0.8 0];
bb(2).FaceColor = [0 0.4470 0.7410];
bb(3).FaceColor = [1 0 0];
hold on
grid on
bb=bar(TimeSub_num,DecompS_n,'stacked');
bb(1).FaceColor = [0.9 0.8 0];
bb(2).FaceColor = [0 0.4470 0.7410];
bb(3).FaceColor = [1 0 0];
xticks(TimeSub_num(48:end));
xticklabels(TimeSub_num(48:end));
datetick('x', 'yyyymm','keepticks');
legend('A','B','C', 'Location', 'NorthWest')

采纳的回答

Image Analyst
Image Analyst 2022-11-14
Adjust xticks or xlim to show more of the x axis.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Bar Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by