Borrar filtros
Borrar filtros

How to entirely show the first and last bars?

4 visualizaciones (últimos 30 días)
Ibrahs
Ibrahs el 14 de Nov. de 2022
Comentada: Ibrahs el 15 de Nov. de 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')

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Bar Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by