I have made graphics using ODS and SGPLOT in SAS, my code looks like this:
ods rtf file="D:\" style=journal bodytitle nogfootnote;
goptions reset=all;
ods graphics / border=off width=18cm height=8cm ;
ods graphics / border=off width=17cm height=8.5cm;
footnote1 "Program: ";
PROC SGPLOT data=data noautolegend;
...
keylegend / title="Group:";
run;
ods rtf close;
I am using colors but the output .rtf file is black and white, How can I make it colored?
The color definitions in the
journalstyle are shades of grey.Use a different style. STYLE=RTF is probably ok.
You can browse style sources:
Programmatically
The LOG will show all the graphic color definitions