How do I add a label on each bar of a multiple bar chart? I want to add specific times as labels.
조회 수: 6(최근 30일)
표시 이전 댓글
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:

댓글 수: 0
답변(2개)
Peter Perkins
2021년 8월 6일
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"]})
댓글 수: 0
참고 항목
범주
Find more on Bar Plots 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!