MATLAB: Is it possible to change color of figure

figureMATLABplot

Dear Matlab figure expert,
I am trying to change the figure color with
fig.color='blue' % i want to change its background color
I am getting result like this
Unbenannt.PNG
however i want to change in this form as i did it manually:
template_b.jpg
Can anybody guide me?
Thank you

Best Answer

a=figure;
a.Color='blue';
b=axes;
b.Color='red';
Related Question