Changing color of single bars in a bar plot
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
The following will give a bar plot consisting of 2 groups of 3 bars:
figure(1),clf
xdata = [1 2];
ydata = [1 2 3; 4 5 6];
hb = bar(xdata,ydata,1);
The following will change the color of the frist bar in each group:
set(hb(1),'facecolor','w')
But I want to change the color of a single bar (e.g., the first bar in the first group). How do I achieve that?
Thanks
0 件のコメント
回答 (2 件)
Dr. Seis
2012 年 1 月 4 日
See Jonathan's answer here: http://www.mathworks.com/matlabcentral/answers/20860-how-to-use-colormap-for-different-bars
0 件のコメント
ifham khan
2016 年 12 月 27 日
I just want to get different color of bar for each label spend much time but got nothing. need help urgent
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/176292/image.png)
0 件のコメント
参考
カテゴリ
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!