How to Set Plot Background Color
24 次查看(过去 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.
0 个评论
采纳的回答
Yongjian Feng
2021-7-30
Instead of
plot(x, y)
try
area(x, y)
3 个评论
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-');
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!