change the color of data in legend

조회 수: 72 (최근 30일)
Hassan
Hassan 2011년 6월 21일
댓글: aerothermal 2016년 8월 31일
I have 3 plots on the same figure but legend doesn't show the right color for each plot.
y=1:10;
color_=['r', 'b'];
for i=1:2
if i==1
j=1;
elseif i==2
j=6;
end
plot(y(j:j+4),color_(i));
hold on
plot([0 10],[5 5],'g');
end
legend('plot1','plot2','line');

채택된 답변

Walter Roberson
Walter Roberson 2011년 6월 21일
h1 = plot(x1,y1,'r');
hold on
h2 = plot(x2,y2,'b');
legend([h1,h2],'plot1','plot2')
The line color used for legend() will be the same as the line color used on the graph.
  댓글 수: 2
Hassan
Hassan 2011년 6월 21일
thanks Walter. sorry I think my question wasn't clear I changed it. could u please look at it.
Hassan
Hassan 2011년 6월 28일
sice i was using a loop, i did this thing:
h=zeros(2);
colors=['r','g']
for i=1:2
h(i)=plot(x1,y1,colors(i))
legend([h(1),h(2)],'plot1','plot2')
end

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

추가 답변 (1개)

Fangjun Jiang
Fangjun Jiang 2011년 6월 21일
Follow this post to change the color of the legend.
  댓글 수: 14
Hassan
Hassan 2011년 6월 21일
thanks Walter for the help.

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by