Statistical Graphics Using ODS


Enabling the Creation of Editable Graphs

Temporarily Enable Creation of Editable Graphs by Using an ODS Statement

You can enable the creation of editable graphs within a SAS session by submitting one of the following statements:

ods listing sge=on;
ods html sge=on;

You can disable the creation of editable graphs by submitting one of the following statements:

ods listing sge=off;
ods html sge=off;

Permanently Enable Creation of Editable Graphs across SAS Sessions

You can create a default setting that enables or disables the creation of editable graphs across SAS sessions by using the "ODS Graphics Editor" setting in the SAS Registry. You can change this setting in the SAS windowing environment as follows:

  1. Open the Registry Editor by entering regedit on the command line.

  2. Select SAS_REGISTRY $\blacktriangleright $ ODS $\blacktriangleright $ GUI $\blacktriangleright $ RESULTS.

  3. Click ODS Graphics Editor to open the Edit String Value window. In the Value Data field, type On to enable the creation of editable graphs or Off to disable it.

  4. Click OK.