If I submit the following code, except for the first and last lines that contains ODS, I get a nice output in my html window with color. However, if I include the ODS statements at the beginning and end, I get output that has no color. I appreciate any help.
ods pdf file='G:\Departments\Research\MAP\1617\Fall 2016\Freqs of Pct Correct by Course Grade.pdf'; *math*; proc sort data=mmap; by letter; proc freq data=mmap noprint; by letter; tables cat / out=FreqOutMath; run; title "Percent Correct on Math MAP by Course Letter Grade"; proc sgplot data=FreqOutMath; vbar letter / response=Percent group=cat groupdisplay=stack; xaxis discreteorder=data; yaxis grid values=(0 to 100 by 10) label="Percentage of Total with Group"; run; ods pdf close;
... View more