/***************************************************************************************************************** SAS file name: ODS_Style.sas File location: _________________________________________________________________________________________________________________ Purpose: To demonstrate how to change the overall appearance of your graph in SAS with ODS Styles Author: Peter Clemmensen Creation Date: 01/03/2017 This program supports the blog post "ODS Style Option" on SASnrd.com *****************************************************************************************************************/ /* HTMLBlue Style */ ods html style=HTMLBlue; title "Vbar Plot With ODS Style=HTMLBlue"; proc sgplot data=sashelp.iris; vbar species / response=SepalLength; run; title; /* Journal Style */ ods html style=Journal; title "Vbar Plot With ODS Style=Journal"; proc sgplot data=sashelp.iris; vbar species / response=SepalLength; run; title; /* What styles are available? */ proc template; list styles; run; /* What does the HTMLBlue Style template look like? */ proc template; source styles.htmlblue; run;