필터 지우기
필터 지우기

How do I change the color of each bar in a plot if I do not have bar groups in MATLAB 7.6 (R2008a) ?

조회 수: 2 (최근 30일)
I use the following code to create a bar plot:
x = [46.6 -34.5 47.9];
bar(x)
I would like each bar to display a different color.

채택된 답변

MathWorks Support Team
MathWorks Support Team 2012년 7월 11일
The following is an example of changing color of each bar by changing the color of the patches that compose the bars:
x = [46.6 -34.5 47.9]';
bhandle = bar(x);
ch = get(bhandle,'Children'); %get children of the bar group
fvd = get(ch,'Faces'); %get faces data
fvcd = get(ch,'FaceVertexCData'); %get face vertex cdata
[zs, izs] = sortrows(x,1); %sort the rows ascending by first columns
for i = 1:length(x)
row = izs(i);
fvcd(fvd(row,:)) = i; %adjust the face vertex cdata to be that of the row
end
set(ch,'FaceVertexCData',fvcd) %set to new face vertex cdata
  댓글 수: 2
Walter Roberson
Walter Roberson 2015년 12월 12일
Haigen MIN, the above code is not valid for R2014b or later. R2014b and newer do not currently have a way to change the bars individually.
Walter Roberson
Walter Roberson 2015년 12월 13일
Haigen MIN, in R2014b or later, in order to control the color of the bars individually, you will need to draw the bars yourself such as with using fill() or patch()

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by