Hi:
In ODS RTF and ODS PDF, the graphs are converted from SAS into either RTF internal format or PDF internal format. Generally, these graphs, once in a file, are not editable.
However, if you use ODS HTML, with the style that you used in RTF or PDF, your result will be a PNG file which should be editable with any kind of graphics editing program. For example, if you run the program below you will get 3 files from running PROC REG:
1) c:\temp\for_journal.html (which you probably do not need)
2) c:\temp\FitPlot.png (this might have a number, depending on whether you've created other FitPlots in the same session)
3) c:\temp\DiagnosticsPanel.png (might also have a number, for same reason as above)
cynthia
[pre]
ods listing close;
ods html path='c:\temp' (url=none)
file='for_journal.html' style=journal;
ods graphics on;
ods html select DiagnosticsPanel FitPlot;
proc reg data=sashelp.class;
model height=weight;
run;
quit;
ods graphics off;
ods html close;
[/pre]