How do I set a background Color in Plots?
440 views (last 30 days)
Show older comments
Sridhar N
on 7 Nov 2014
Answered: Kherbache Abdelkader
on 22 May 2021
Hi , I wanted to know as to how I can go about changing the background color in a plot. The default background color of a plot is White. Some info on how to keep the color of data points' constant and change only background color of plot will be of great help. Thanks !
0 Comments
Accepted Answer
More Answers (2)
Star Strider
on 7 Nov 2014
The patch function is one way to do it:
x = linspace(0,10*pi);
y = sin(x).*cos(50*x);
xl = [min(x) max(x)];
yl = [min(y) max(y)];
figure(1)
patch([xl fliplr(xl)], [yl(1) yl(1) yl(2) yl(2)], [0.5 0.8 0.9])
hold on
plot(x, y, '-b')
grid
hold off
axis([min(x) max(x) min(y) max(y)])
0 Comments
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!