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

2 次查看(过去 30 天)
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

采纳的回答

Rik
Rik 2017-4-11
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

更多回答(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