| Date: | Wed, 5 Mar 2008 04:15:59 -0800 |
| Reply-To: | RolandRB <rolandberry@HOTMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | RolandRB <rolandberry@HOTMAIL.COM> |
| Organization: | http://groups.google.com |
| Subject: | Re: Is it possible to use annotate for long html pages |
|
| Content-Type: | text/plain; charset=ISO-8859-1 |
On Mar 5, 12:55 pm, rdevene...@WILDBLUE.NET ("Richard A. DeVenezia")
wrote:
> RolandRB wrote:
> > Perfect! Problem solved.
>
> > goptions reset=all xpixels=1000 ypixels=6000 hpos=50 vpos=300
> > ftext='Times New Roman' dev=html;
>
> > %rannomac
>
> > data test;
> > %dclannovars;
> > %xyzhsys(xsys='4',ysys='4',hsys='4')
> > %rarrow(y=298,x1=20,x2=48,height=0.5)
> > %text(y=298,x=19,position='<',text="right-aligned text")
>
> %rarrow(y=297,x1=20,x2=48,height=0.5,fillcolor='green',linecolor='black',fil
> lpattern='mempty')
>
> > %text(y=297,x=19,position='<',text="next line of text")
> > run;
>
> > proc ganno annotate=test;
> > run;
>
> For reference, there was a SUGI 30 paper by Chang Chung and Ya Hunag,
> "%CYARROW, A NEW ANNOTATE MACRO"http://www2.sas.com/proceedings/sugi30/048-30.pdf
>
> --
> Richard A. DeVenezia
I saw that macro but decided against using it. I want my arrows to
strictly lie parallel to the x axis, like the other shapes, so I
wanted a macro with only one y value parameter.
|