Search code examples
plotsasenterprise-guide

How to change the size of a plot in an Enterprise Guide report


I create a scatter plot in EG-project outputting it into standard EG report output destination (not sure, how to call it correctly?). The scatter plot is a bit crowded along y-axis, so I'd like to stretch it vertically. I tried to change goptions vsize= and goptions ypixels=, but it doesn't make any changes in the plot appearance. Would appreciate any help with that!

I run SAS 9.3 (TS1M0) and EG 4.3.


Solution

  • GOPTIONS is used for SAS/GRAPH, while ODS GRAPHICS is used for ODS Graphics (any of the SG* procedures, plus anything like PROC UNIVARIATE when ODS GRAPHICS is turned on).

    ods graphics height=<height>;
    

    would be how you change the height.

    See the ODS Graphics Tip Sheet for more information.