I have different plots and graphs in my code that initially printed with colors as required. However, after restarting my windows PC and rerun my codes, all the plots and graphs are displayed as grey/white. In the log I suddenly see the following when plotting: "WARNING: Could not locate style 'text'. and when creating tables: "WARNING: Could not locate style 'html'. I have checked that output style in preferences is set to HTMLBlue, and I never changed it. I am using SAS 9.4 Sample code I run is from following https://support.sas.com/documentation/cdl/en/grstatproc/62603/HTML/default/viewer.htm#a003199396.htm proc sgplot data=sashelp.stocks (where=(date >= "01jan2000"d
and date <= "01jan2001"d
and stock = "IBM"));
title "Stock Volume vs. Close";
vbar date / response=volume;
vline date / response=close y2axis;
run; and my result is the following: How can I have the tables and plots to show colors again?
... View more