How do I add a label on each bar of a multiple bar chart? I want to add specific times as labels.

2 views (last 30 days)
I want to add a time as a label for each of my bars on this multiple bar chart. For example, I want 4:30:00 to display on top of my bar etc... Can someone help? Thanks.
figure(30)
h1=bar(T_Smooth{1:4,8},[T_Smooth{1,5} T_Smooth{1,7}; T_Smooth{2,5} T_Smooth{2,7};T_Smooth{3,5} T_Smooth{3,7};T_Smooth{4,5} T_Smooth{4,7}]);
I get this figure:

Answers (2)

Cris LaPierre
Cris LaPierre on 6 Aug 2021
See the 'Specify Labels at the Ends of Bars' example on the bar documentation page.

Peter Perkins
Peter Perkins on 6 Aug 2021
I bet there's a way to simplify the arguments to your bar command. What about something like
bar(T_Smooth.X(1:4),T_Smooth{1:4,["Y" "Z"]})

Tags

Community Treasure Hunt

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

Start Hunting!