LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 2008, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Tue, 4 Mar 2008 08:23:50 -0500
Reply-To:   "Richard A. DeVenezia" <rdevenezia@WILDBLUE.NET>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Richard A. DeVenezia" <rdevenezia@WILDBLUE.NET>
Subject:   Re: Is it possible to use annotate for long html pages
Comments:   To: RolandRB <rolandberry@hotmail.com>
Content-Type:   text/plain; charset="iso-8859-15"

RolandRB wrote: > Using the different setting for xsys and ysys it strikes me that this > is very much page orientated. But what if I am intending to create > html pages with no defined page dimensions? I want the page to be as > long as it needs to. Can I do this with annotate datasets and if so, > how?

What kind of page are you generating ?

When you talk annotate, you are indicating graphics output. When you talk graphics output, you are indicating a fixed, apriori set output rectangle -- usually a .gif or .png file with so many XPIXELS and YPIXELS -- annotation works within the rectangle.

Of course, you can place as many graphic rectangles as you want in your output.

If you need a single graphics output with lots and lots of text you have a couple options, here are two:

One ----- Render your graphics in some regular sized fixed rectangle (gif/png/jpg) Add the annotation text below the graphics as plain html code, using proc report or data _null_ -- there would be no annotation dataset in the sense of xsys, ysys, etc. I often call lots of text the image narrative.

Two ----- Estimate the amount of extra space needed to render the annotation information. Increase YPIXELS prior to graphic rendering, which would include the use of a typical annotation dataset. You will have to use GOPTION OFFSET= to affect the placement of PROC generated graphics.

-- Richard A. DeVenezia http://www.devenezia.com


Back to: Top of message | Previous page | Main SAS-L page