How to change spacing in tick labels on bar graph

10 views (last 30 days)
My problem is that the labels are not aligned with the bar it corresponds to. Also, some labels were not displayed. Please help.
  1 Comment
dpb
dpb on 28 Nov 2016
Show an example of your data and plot that illustrates the issue. Attach the figure as well would be good...save as .jpg say, and use the colored image button to select/attach it...we're left guessing as to what the real issue is; you can certainly use X values with bar that reflect the positions of the data.

Sign in to comment.

Accepted Answer

Preethi
Preethi on 28 Nov 2016
hi,
Use can use XTick and XTicklabel feature.
  3 Comments
VBBV
VBBV on 13 Nov 2022
bar(1:5)
set(gca,'XTick',1:5)
z ={'a','b','c','d','e'}
z = 1×5 cell array
{'a'} {'b'} {'c'} {'d'} {'e'}
set(gca,'XTickLabel',z)

Sign in to comment.

More Answers (0)

Categories

Find more on Printing and Saving 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!