How can I add the values to the top of the bars?
1 view (last 30 days)
Show older comments
Volkan Yangin
on 2 Apr 2017
Commented: Star Strider
on 2 Apr 2017
Hi everbody
To add the values of bars (like as the image), what kind of a code can be written?
Thanks...
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/162517/image.gif)
graf=[10 15]
bar(graf,0.2,'m')
set(gca,'XTickLabel',{'X','Y'})
ylabel( '% ')
grid on
0 Comments
Accepted Answer
Star Strider
on 2 Apr 2017
Try this:
graf=[10 15]
bar(graf,0.2,'m')
set(gca,'XTickLabel',{'X','Y'})
ylabel( '% ')
xt = get(gca, 'XTick'); % Values For ‘X-Ticks’
text(xt, graf, {'10%','15%'}, 'VerticalAlignment','bottom', 'HorizontalAlignment','center')
set(gca, 'YLim',[0 20])
grid on
More Answers (0)
See Also
Categories
Find more on Annotations 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!