Effacer les filtres
Effacer les filtres

Bar chart is not plotted evenly over the X-axis!

2 vues (au cours des 30 derniers jours)
Antonio
Antonio le 10 Avr 2017
Commenté : Antonio le 11 Avr 2017
Could anybody tell me why my chart is not evenly plotted?! The space on the right side is bigger than the space on the left side when I run this code:
figure('name','Bar Chart','numbertitle','off');
Zone = {'Z1','Z2','Z3','Z4','Z5','Z6','Z7','Z8','Z9','Z10','Z11','ES', ...
'MS', 'HS', 'Hospital', 'Fire Station'};
Damage_Pct = [22 33 15 30; 30 15 20 35; 25 20 10 45; 20 10 5 65; 22 33 15 30; ...
30 15 20 35; 25 20 10 45; 20 10 5 65; 22 33 15 30; 30 15 20 35; ...
25 20 10 45; 20 10 5 65; 25 20 10 45; 20 10 5 65; 22 33 15 30; 30 15 20 35];
bar(Damage_Pct, 'stacked');
set(gca,'XTick',1:size(Zone,2),'XTickLabel',Zone);
title('Percentage of Damage in Different Zones');
xlabel('Zone');
ylabel('Percentage of Damage');
legend('DS1','DS2','DS3','DS4');
Thanks

Réponse acceptée

Rik
Rik le 11 Avr 2017
I don't know why, but you can easily fix this with the axis command, or on newer releases with the xlim command.
try
xlim([0 length(Zone)+1])
catch
axis([0 length(Zone)+1 0 100])
end
  1 commentaire
Antonio
Antonio le 11 Avr 2017
That works great! Thank you :)

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by