필터 지우기
필터 지우기

How to Set Plot Background Color

조회 수: 15 (최근 30일)
Yamina chbak
Yamina chbak 2021년 7월 30일
댓글: Yamina chbak 2021년 7월 30일
Hi, I would like to set the backgrourd color of my figures, for example i have
and i want like that
it's possible ?? thanks.

채택된 답변

Yongjian Feng
Yongjian Feng 2021년 7월 30일
Instead of
plot(x, y)
try
area(x, y)
  댓글 수: 3
Yongjian Feng
Yongjian Feng 2021년 7월 30일
Try the following combinations. Get rid the ones you don't wnat.
ar=area(x, h);
hold on
ar.EdgeColor = 'red';
ar.FaceColor = 'green';
ar2 = area(x, g);
ar2.EdgeColor = 'blue';
ar2.FaceColor = 'yellow';
plot(x, h, 'k-');
plot(x, g, 'bo-');
Yamina chbak
Yamina chbak 2021년 7월 30일
Thanks youuu @Yongjian Feng you explain me very well ! it's exactly what i want. thanks you again.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by