** MAKING FONT SIZE LARGER ON PLOTS; ** define the new template; proc template; define style powerpoint; parent=Styles.listing; class GraphTitleText from GraphTitleText/fontsize=22pt; **main title; class GraphValueText from GraphValueText/fontsize=22pt; **axis numbers; class GraphLabelText from GraphLabelText/fontsize=22pt; **axis titles; end; run; proc template; define style testing; parent=Styles.listing; end; run; ** make this new template the active template; ods listing style=powerpoint; ** draw your ODS plot; proc sgplot data=Sashelp.class; title "Student Heights"; scatter x=Age y=Height; run;