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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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