How to Set Plot Background Color
24 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Yamina chbak
le 30 Juil 2021
Commenté : Yamina chbak
le 30 Juil 2021
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 commentaires
Réponse acceptée
Yongjian Feng
le 30 Juil 2021
Instead of
plot(x, y)
try
area(x, y)
3 commentaires
Yongjian Feng
le 30 Juil 2021
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-');
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!