Titles and footnotes might be missing from graphics output that you create with SAS® Enterprise Guide®. This occurs because SAS Enterprise Guide by default uses the following two options in most of the ODS statements that it creates behind the scenes:
nogtitle nogfootnote
One circumvention for this problem is to select Tools ► Options from the SAS Enterprise Guide menu bar. On the left side under Results, click Graph. On the right side under Graph Format, select PNG. When you select PNG as the value for Graph Format, you then need to enable the following two options in this window:
Include titles inside the image
Include footnotes inside the image
Click OK to save the changes.
Another circumvention for this problem is to add the following statement to the code that you are submitting to SAS using SAS Enterprise Guide:
ods _all_ close;
The statement above cancels any ODS statements that SAS Enterprise Guide might be adding to your code. Note that if you do use the ODS _ALL_ CLOSE statement shown above but your SAS code does not use any additional ODS statements, you might need to use the following two statements at the beginning of your code:
ods _all_ close;
ods listing;
The first statement above cancels any ODS statements that SAS Enterprise Guide adds to your code, and the second statement reopens the Listing destination.