How to represent values in horizontal in bar chart

1 visualización (últimos 30 días)
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..

Respuesta aceptada

David Sanchez
David Sanchez el 21 de Mayo de 2013
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);

Más respuestas (1)

Thomas
Thomas el 21 de Mayo de 2013
Editada: Thomas el 21 de Mayo de 2013

Categorías

Más información sobre Bar Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by