How can I move the bars in a bar chart?
31 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Catayoun Lissa Eleonore Azarm
el 12 de En. de 2021
Respondida: David Hill
el 12 de En. de 2021
Hey! can someone help me? i want my graph to look like the 2nd one, but it looks like the first. so the bars are moved. and i dont kno how to move them.
Greets
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/486118/image.png)
4 comentarios
the cyclist
el 12 de En. de 2021
It would be easiest to help you if you uploaded both the data and the code that generated your figure, so that we can see exactly how you did it, recreate the figure, and help you fix it.
If that is not possible for some reason, at the very least please post the commands you used to plot the bars, plot the line, and create the x-axis labels.
Adam Danz
el 12 de En. de 2021
As the cyclist pointed out, we don't know how your plots were created so we can't be certain what's wrong.
For example, are the month labels a result of specifying xtick and xticklabel or are your data categorical or datetime values?
My guess is that you're specifying x-ticks with datetime values but the x-values are not on the first day of the month. The problem could be fixed using dateshift to shift the dates to the 1st of the month but there are better ways such as specifying xtickformat.
Respuestas (1)
David Hill
el 12 de En. de 2021
figure;
bar_displacement=.25;%play with this until it is correct
bar(x-bar_displacement,y);
set(gca,'XTick', x);
0 comentarios
Ver también
Categorías
Más información sobre Time Series Objects 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!