Graph bar with plot
1 次查看(过去 30 天)
显示 更早的评论
Hi! I've created a graph bar with plot but the rectangles are united. I want them independent and I don't know how to do it.
(this is a screenshot. There are different values but all the rectangles are united).
Thanks in advance,
Emma
0 个评论
回答(2 个)
Image Analyst
2012-8-28
Change the BarWidth property:
m = rand(1, 5);
bar(m, 'BarWidth', 0.9);
3 个评论
Image Analyst
2012-8-30
If you want red bars going up to the top of the shorter bar between a pair of bars, then you'll have to use the line() function, though you might be able to use the stem() function. I don't know off the top of my head how to do it - I'd have to research it by looking in the help, like you. I figure you can do that as well as me. Can you do that? Why do you want such a specialized, non-standard presentation anyway? I think your chart is kind of distracting and confusing. Why won't normal bar charts work for you?
José-Luis
2012-8-29
Look at the documentation
doc bar
For example:
bar(m,'g','EdgeColor','k','BarWidth',0.9)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Discrete Data Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!