anyway to give separate color to 'stack' bar plot

조회 수: 3 (최근 30일)
Yu Li
Yu Li 2019년 10월 16일
댓글: Yu Li 2019년 10월 16일
Hi:
I read an post from link below:
which provide a way to add annotation to the individual of each data. I would like to know if there is anyway to control the color of each individual bar?
untitled.jpg
Thanks!
Yu

답변 (1개)

darova
darova 2019년 10월 16일
편집: darova 2019년 10월 16일
Do you have colors you want to paint bars into?
for i = 1:length(hBar)
h1 = get(hBar(i),'Children');
n = length( get(h1,'FaceVertexCdata') );
set(h1,'faceVertexCdata',rand(n,3))
end
  댓글 수: 5
darova
darova 2019년 10월 16일
I have v2013. Which face will change if you try this
hBar(1).FaceColor = [1 0 0];
Yu Li
Yu Li 2019년 10월 16일
Hi:
yes, 'faceColor' works but it is only single color. I need to change all the colors.
Thanks!
Yu

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

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by