Bar graph grouped bar property
Mostrar comentarios más antiguos
I'm trying to plot several data series in a bar graph, and group the bars. However, when I use the below code, the bars are overlapped and not grouped.
for i=1:5
h(i)=bar(0:10,histc(data{i},0:10),'grouped');
set('MarkerEdgeColor,color{i},'MarkerFaceColor',color{i})
end
2 comentarios
Walter Roberson
el 12 de Mzo. de 2013
Are the data{i} all the same shape? What is size(data) ?
Jared
el 12 de Mzo. de 2013
Respuestas (0)
Categorías
Más información sobre Bar Plots 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!