How do I make bar graph spacing equal?

9 views (last 30 days)
Y = [2021 2021 2021 2021 2021] ;
M = [02 02 02 02 03] ;
D = [09 17 22 24 02];
x = datetime(Y,M,D) ;
y = [2.1 9 9.9 12.4 5] ;
figure
bar(x,y)
set(gca,'FontSize',8.5)
ylabel('Temperature (degrees Celsius)')
xlabel('Date')
axis tight
I have temperature on the y axis and dates on the x axis but the spacing is uneven. How do I make the spacing equal?
Thanks :)

Accepted Answer

Star Strider
Star Strider on 29 May 2021
One approach —
Y = [2021 2021 2021 2021 2021] ;
M = [02 02 02 02 03] ;
D = [09 17 22 24 02];
x = datetime(Y,M,D);
y = [2.1 9 9.9 12.4 5] ;
figure
bar(y)
set(gca,'FontSize',8.5)
ylabel('Temperature (degrees Celsius)')
xlabel('Date')
set(gca, 'XTick',1:numel(x), 'XTickLabel',string(x))
axis tight
.

More Answers (0)

Categories

Find more on Animation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!