Bar graph coloring and shading
Mostrar comentarios más antiguos
I want to be able to shade/color a bar graph orange. I want the darkest or brightest orange to be at the far right, and have it get lighter to an almost whitish orange at the left of the graph. heres what ive been trying so far: the middle option wouldnt work cause I couldnt get orange any help since it's not available.
x=(1:13)
y=[177;47;40;21;21;13;12;14;10;5;2;4;3]
bar(x,y)
% bar([177,0,0,0,0,0,0,0,0,0,0,0,0],'r');
% hold on
% bar([0,47],'b');
% bar([0,0,40],'g')
% bar([0,0,0,21],'g')
% bar([0,0,0,0,21],'g')
% bar([0,0,0,0,0,13],'g')
% bar([0,0,0,0,0,0,12],'g')
% bar([0,0,0,0,0,0,0,14],'g')
% bar([0,0,0,0,0,0,0,0,10],'g')
% bar([0,0,0,0,0,0,0,0,0,5],'g')
% bar([0,0,0,0,0,0,0,0,0,0,2],'g')
% bar([0,0,0,0,0,0,0,0,0,0,0,4],'g')
% bar([0,0,0,0,0,0,0,0,0,0,0,0,3],'g')
set(gca,'XTickLabel',{'0-4.5','5-9.5','10-14.5','15-19.5','20-24.5','25-29.5','30-34.5','35-39.5','40-44.5','45-49.5','50-54.5','55-59.5','>60'})
Respuestas (1)
Sean de Wolski
el 20 de Mzo. de 2013
0 votos
3 comentarios
Dimitri
el 20 de Mzo. de 2013
Sean de Wolski
el 20 de Mzo. de 2013
Sorry, missed the shading part. You will have to set the shading to interp in there somewhere. I'll see if I can find it. If not, this would be easy with patch objects.
Categorías
Más información sobre Graphics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!