Filter löschen
Filter löschen

How to entirely show the first and last bars?

4 Ansichten (letzte 30 Tage)
Ibrahs
Ibrahs am 14 Nov. 2022
Kommentiert: Ibrahs am 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')

Akzeptierte Antwort

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

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by