Hello,

> De : Dagmar Van Driessche
> Envoyé : mercredi 29 avril 2015 13:13
>
> I am currently working on a project and I want to subplot 4 plots.
> However  these subplots all have different background colors

You can do something like that :

--------------------

h = gcf(); // get the figure's handle

h1 = h.children(1); // get the handle on the 1st figure

h2 = h.children(2); // get the handle on the 2nd figure
...

h1.background = 1; // set the color

--------------------

For the colours themselves, you may have a look at
http://help.scilab.org/docs/5.5.2/en_US/colormap.html

Hope this helps

--
Christophe Dang Ngoc Chan
Mechanical calculation engineer
This e-mail may contain confidential and/or privileged information. If you are 
not the intended recipient (or have received this e-mail in error), please 
notify the sender immediately and destroy this e-mail. Any unauthorized 
copying, disclosure or distribution of the material in this e-mail is strictly 
forbidden.
_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to