BookmarkSubscribeRSS Feed
deleted_user
Not applicable
For html output how do I control how much space is allotted in my browser window for the plot?
4 REPLIES 4
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
The size/dimensions of the image - explore vsize and hsize parameters:

http://support.sas.com/rnd/datavisualization/papers/GraphBasics.pdf

Scott Barry
SBBWorks, Inc.

Recommended Google advanced search argument this topic/post:

proc gplot graph dimensions ods site:sas.com
GraphGuy
Meteorite | Level 14
For my ods html sas/graph output, I use goptions xpixels & ypixels.

I find that xpixels/ypixels let me specify *any* desired size, whereas (iirc) hsize & vsize were "constrained" by the limits set in the device files, or something like that.
deleted_user
Not applicable
changing xpixels/ypixels just seem to warp the image.
At the moment my plot is chopped off at the top due to lack of browser window space.
GraphGuy
Meteorite | Level 14
Hmm ... perhaps you're mixing-and-matching some options that don't work well together.

Try using the code below, and make sure the gplot comes out looking right - if it doesn't look right, maybe something in your autoexec.sas, etc, isn't "playing well" with these options. Once you get it looking right, then swap your graphics proc for this 'proc gplot'.


filename odsout '.';

goptions device=gif;
goptions xpixels=400 ypixels=400;

ODS LISTING CLOSE;
ODS HTML path=odsout body="foo.htm";

proc gplot data=sashelp.class;
plot height*weight / name="foo";
run;

quit;
ODS HTML CLOSE;
ODS LISTING;

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1325 views
  • 0 likes
  • 3 in conversation