*
;
/*
From: Connie Brown 
Reply-To: Connie Brown 
Newsgroups: comp.soft-sys.sas
Subject: Shaded Backgrounds
Date: Mon, 6 Nov 1995 16:03:52 CST
Message-ID: <9511062113.AA0576@csbrown.purina-mills.com>

Here is a program that should help you do
shaded backgrounds.

Of course, change the color and the hex code accordingly.

Connie
connie@csbrown.purina-mills.com
*/
goptions penmounts=255 colors=(red) device=pxi;
data back;
  length color $8.;
  xsys = '3';
  ysys = '3';  do i = 1 to 200;
    line = 1;
    style = 'solid   ';
    color = 'cxff00' || put ((i - 1), hex2.);
    function = 'move    ';
    x = 0;
    y = (201 - i) * 100 / 200;
    output;
    line = 0;
    function = 'bar     ';
    x = 100;
    y = (200 - i) * 100 / 200;
    output;
    end;
run;

proc gslide annotate=back;
run;

*
;