How to represent values in horizontal in bar chart
1 次查看(过去 30 天)
显示 更早的评论
http://i44.tinypic.com/33vjga1.jpg...in the link mentioned above, i am getting all the months in a single direction.. i should get like january... den febrauary... den march....
january
febrauary..
march..
0 个评论
采纳的回答
David Sanchez
2013-5-21
x=rand(12,1);
y=rand(12,1);
plot(x,y,'o')
months = ['Jan';
'Feb';
'Mar';
'Apr';
'May';
'Jun';
'Jul';
'Aug';
'Sep';
'Oct';
'Nov';
'Dec'];
set(gca,'YTickLabel',months);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Bar Plots 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!