blob: 5d5e7d435f2cbb1b9819a889348b82feb671c175 (
plain)
1
2
3
4
5
6
7
8
9
|
//------------------------------------------------------------------
//figure handel settings
f=get("current_figure"); //Current figure handle
f.background=8; //make the figure window background white
l=f.children(1);
l.background=8 ;//make the text background white
id=color('grey');
xgrid(id);
//------------------------------------------------------------------
|