How to add a horizontal line in a bar plot????
117 views (last 30 days)
Show older comments
Dear all,
i use the command bar for a plot. I want to insert a horizontal line in a bar plot at y = 30. How can I do that? Thank you!
0 Comments
Accepted Answer
Azzi Abdelmalek
on 1 Feb 2013
Edited: Azzi Abdelmalek
on 1 Feb 2013
xlim=get(gca,'xlim');
hold on
plot(xlim,[30 30])
2 Comments
Image Analyst
on 1 Feb 2013
Isn't the first line unnecessary? xlim is already the x limits - you don't have to call get() to retrieve it, it's already ready to be used "as is". xlim is actually a function itself that returns the x limits.
More Answers (1)
Vivian Hauss
on 19 Jul 2016
Edited: Vivian Hauss
on 19 Jul 2016
A bit shorter:
hline(30,':k','This Line is horizontal')
1 Comment
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!