<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SAS/Graph OPTIONS in Stored Process in Developers</title>
    <link>https://communities.sas.com/t5/Developers/SAS-Graph-OPTIONS-in-Stored-Process/m-p/1585#M1588</link>
    <description>Device=WIN may work, but it is not the default driver that is used when you're in EG, unless you've changed your EG default. There's a difference between the device that's used for display on the screen and the device that's used to send the graphic output to a file. The device driver that is used with SAS/Graph inside EG is&lt;BR /&gt;
&lt;B&gt;[pre]&lt;BR /&gt;
dev=ActiveX[/pre]&lt;/B&gt;&lt;BR /&gt;
  When you turn your SAS/Graph program into a stored process, you can choose which device driver should be used for the stored process by using an override of the default ODS options that pertain to graphic output, as shown:&lt;BR /&gt;
[pre]&lt;BR /&gt;
%let _GOPT_DEVICE = actximg;&lt;BR /&gt;
%let _GOPT_XPIXELS = 640;&lt;BR /&gt;
%let _GOPT_YPIXELS = 480;&lt;BR /&gt;
&lt;BR /&gt;
*ProcessBody;&lt;BR /&gt;
&lt;BR /&gt;
%stpbegin;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
  In this example, the default device is set to "ACTXIMG", which is like the ActiveX driver used by EG, but without the interactivity that's built into EG. You can also set the Xpixels and Ypixels (if you wanted to control the size of the graph. These are just a few of the "_GOPT_" options that are available for you to override. To learn more about SAS/Graph and stored processes and these options that you can override, refer to this site:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/reserved.html" target="_blank"&gt;http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/reserved.html&lt;/A&gt; and this site has some more information about overriding input parameters: &lt;A href="http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/stpmacro.html" target="_blank"&gt;http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/stpmacro.html&lt;/A&gt;&lt;BR /&gt;
    Good luck!&lt;BR /&gt;
cynthia</description>
    <pubDate>Thu, 19 Oct 2006 06:06:46 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2006-10-19T06:06:46Z</dc:date>
    <item>
      <title>SAS/Graph OPTIONS in Stored Process</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Graph-OPTIONS-in-Stored-Process/m-p/1583#M1586</link>
      <description>I have used PROC GCHART to plot some box graphs in SAS code and built it into a stored process. But in EG the shapes of the graph change a lot and I'm given this NOTE: "Some of your options or statements may not be supported with the Activex or Java series of devices.  Graph defaults for these drivers may be different from other SAS/GRAPH device drivers." While I do need the exactly same shapes for the graphs. Is there any setting or code that can help me get exact same graphs under SAS and EG? Thanks!</description>
      <pubDate>Wed, 18 Oct 2006 17:52:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Graph-OPTIONS-in-Stored-Process/m-p/1583#M1586</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-10-18T17:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/Graph OPTIONS in Stored Process</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Graph-OPTIONS-in-Stored-Process/m-p/1584#M1587</link>
      <description>I found it. Just add "goption dev=win" which is default setting in SAS.</description>
      <pubDate>Wed, 18 Oct 2006 22:18:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Graph-OPTIONS-in-Stored-Process/m-p/1584#M1587</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-10-18T22:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/Graph OPTIONS in Stored Process</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Graph-OPTIONS-in-Stored-Process/m-p/1585#M1588</link>
      <description>Device=WIN may work, but it is not the default driver that is used when you're in EG, unless you've changed your EG default. There's a difference between the device that's used for display on the screen and the device that's used to send the graphic output to a file. The device driver that is used with SAS/Graph inside EG is&lt;BR /&gt;
&lt;B&gt;[pre]&lt;BR /&gt;
dev=ActiveX[/pre]&lt;/B&gt;&lt;BR /&gt;
  When you turn your SAS/Graph program into a stored process, you can choose which device driver should be used for the stored process by using an override of the default ODS options that pertain to graphic output, as shown:&lt;BR /&gt;
[pre]&lt;BR /&gt;
%let _GOPT_DEVICE = actximg;&lt;BR /&gt;
%let _GOPT_XPIXELS = 640;&lt;BR /&gt;
%let _GOPT_YPIXELS = 480;&lt;BR /&gt;
&lt;BR /&gt;
*ProcessBody;&lt;BR /&gt;
&lt;BR /&gt;
%stpbegin;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
  In this example, the default device is set to "ACTXIMG", which is like the ActiveX driver used by EG, but without the interactivity that's built into EG. You can also set the Xpixels and Ypixels (if you wanted to control the size of the graph. These are just a few of the "_GOPT_" options that are available for you to override. To learn more about SAS/Graph and stored processes and these options that you can override, refer to this site:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/reserved.html" target="_blank"&gt;http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/reserved.html&lt;/A&gt; and this site has some more information about overriding input parameters: &lt;A href="http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/stpmacro.html" target="_blank"&gt;http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/stpmacro.html&lt;/A&gt;&lt;BR /&gt;
    Good luck!&lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 19 Oct 2006 06:06:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Graph-OPTIONS-in-Stored-Process/m-p/1585#M1588</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2006-10-19T06:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAS/Graph OPTIONS in Stored Process</title>
      <link>https://communities.sas.com/t5/Developers/SAS-Graph-OPTIONS-in-Stored-Process/m-p/1586#M1589</link>
      <description>Great! Thank you!!</description>
      <pubDate>Thu, 19 Oct 2006 16:18:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/SAS-Graph-OPTIONS-in-Stored-Process/m-p/1586#M1589</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-10-19T16:18:50Z</dc:date>
    </item>
  </channel>
</rss>

