<?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 How to show ODS Graphics Options? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-show-ODS-Graphics-Options/m-p/192796#M7123</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way I can show the current value of all ODS graphics options?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So say I have in my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;ods graphics/ reset=all
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; border=off
;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way I could find out what the options were before that point, and what they have been reset to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same as I could use %sysfunc(getoption()) to get the value of a system option or a dictionary table of options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is dictionary.options and dictionary.goptions but no dictionary.odsgoptions... ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;--Q.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Mar 2014 16:36:26 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2014-03-05T16:36:26Z</dc:date>
    <item>
      <title>How to show ODS Graphics Options?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-show-ODS-Graphics-Options/m-p/192796#M7123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way I can show the current value of all ODS graphics options?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So say I have in my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;ods graphics/ reset=all
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; border=off
;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way I could find out what the options were before that point, and what they have been reset to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same as I could use %sysfunc(getoption()) to get the value of a system option or a dictionary table of options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is dictionary.options and dictionary.goptions but no dictionary.odsgoptions... ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;--Q.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 16:36:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-show-ODS-Graphics-Options/m-p/192796#M7123</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2014-03-05T16:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to show ODS Graphics Options?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-show-ODS-Graphics-Options/m-p/364661#M12665</link>
      <description>&lt;P&gt;Gotta love when Googling turns up your own unanswered question from several years back...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The good news is that 9.4M3 added a /SHOW options to the ODS graphics statement.&amp;nbsp; Unfortunately this does not actually show all the current ODS options.&amp;nbsp; If you have not set an option, it only shows "those options for which currently ODS knows the default values" (whatever that means, I guess it's because some default options are dependent on output destination or other things?).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;25         ods graphics/ reset=all;
26         
27         ods graphics/show ;

ODS Graphics Settings
---------------------
Output format:                  STATIC
By line:                        NOBYLINE
Antialias:                      ON
Maximum Loess observations:     5000
Maximum stack depth:            1024
Stack depth:                    0
28         
29         ods graphics / border=on ;
30         
31         ods graphics/show ;

ODS Graphics Settings
---------------------
Output format:                  STATIC
By line:                        NOBYLINE
Antialias:                      ON
Border:                         ON
Maximum Loess observations:     5000
Maximum stack depth:            1024
Stack depth:                    0&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would be nice to be able to see all options, but this is helpful.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 17:39:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-show-ODS-Graphics-Options/m-p/364661#M12665</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2017-06-06T17:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to show ODS Graphics Options?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-show-ODS-Graphics-Options/m-p/803426#M22689</link>
      <description>&lt;P&gt;It would be even better if this information could be available in a macro, but I guess it's not SAS if it's not hard to do it &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 18:53:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-show-ODS-Graphics-Options/m-p/803426#M22689</guid>
      <dc:creator>gabonzo</dc:creator>
      <dc:date>2022-03-22T18:53:04Z</dc:date>
    </item>
  </channel>
</rss>

