Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers, Unverified Users Joined: 10/28/2004(UTC) Posts: 3,111 Location: Perth, Western Australia
Was thanked: 16 time(s) in 16 post(s)
|
The is no discrete way to colour a region, but there is a work around....
--8<----------------------------------------
{Shaded Regions}
{shades the region between two lines}
x0:=Mov(C,10,S); {line 1}
x1:=Mov(C,200,S); {line 2}
If(x0>x1,If(Mod(Cum(1),2)=0,x0,x1),x0);
If(x0>x1,If(Mod(Cum(1),2)=0,x1,x0),x0);
If(x1>x0,If(Mod(Cum(1),2)=0,x0,x1),x1);
If(x1>x0,If(Mod(Cum(1),2)=0,x1,x0),x1);
x0;x1;
--8<----------------------------------------
Judicious use of colours, line styles and weights can have some interetsing effects.
Hope this helps.
wabbit :D
|