How to entirely show the first and last bars?

2 vues (au cours des 30 derniers jours)
Ibrahs
Ibrahs le 14 Nov 2022
Commenté : Ibrahs le 15 Nov 2022
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')

Réponse acceptée

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

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by