Date: Mon, 14 May 2012 05:21:04 -0400
Reply-To: SAS Analyst <analystprasad@YAHOO.CO.IN>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: SAS Analyst <analystprasad@YAHOO.CO.IN>
Subject: I need Gradient color shading in sas annotation facility
Hi,
For example, the following draws a green box. But how can I make the color
blend from one color to another?Please do needful.
data box;
length function style color $ 8 text $ 15;
xsys="3"; ysys="3";
color="green";
function="move"; x=10; y=65; output;
function="bar"; x=30; y=95; style="solid"; output;
run;
proc ganno annotate=box;
run;
quit;
Regards,
Prasad.
|