BookmarkSubscribeRSS Feed
Quentin
Super User

Is there a way I can show the current value of all ODS graphics options?

So say I have in my code:

ods graphics/ reset=all
              border=off
;

Is there a way I could find out what the options were before that point, and what they have been reset to?

Same as I could use %sysfunc(getoption()) to get the value of a system option or a dictionary table of options.

There is dictionary.options and dictionary.goptions but no dictionary.odsgoptions... ?

Thanks,

--Q.

The Boston Area SAS Users Group is hosting free webinars!
Next webinar will be in January 2025. Until then, check out our archives: https://www.basug.org/videos. And be sure to subscribe to our our email list.
2 REPLIES 2
Quentin
Super User

Gotta love when Googling turns up your own unanswered question from several years back...

 

The good news is that 9.4M3 added a /SHOW options to the ODS graphics statement.  Unfortunately this does not actually show all the current ODS options.  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?).

 

For example:

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

 

Would be nice to be able to see all options, but this is helpful.

The Boston Area SAS Users Group is hosting free webinars!
Next webinar will be in January 2025. Until then, check out our archives: https://www.basug.org/videos. And be sure to subscribe to our our email list.
gabonzo
Quartz | Level 8

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 😛

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 2 replies
  • 1194 views
  • 4 likes
  • 2 in conversation