How to Set Plot Background Color

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.

 采纳的回答

Instead of
plot(x, y)
try
area(x, y)

3 个评论

Thanks @Yongjian Feng for answer me, but can you help me more because if I write for example
plot(x, h,'k-', x, g, 'bo-')
% or plot(x,h,'k-'), hold on, plot(x,g,'bo-')
what I do ? and i want to choose the backround color
Thanks again
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-');
Thanks youuu @Yongjian Feng you explain me very well ! it's exactly what i want. thanks you again.

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

产品

版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by