ods html file="Figure1";
title " ";
title2 " ";
title3 "Title I would like to increase the size of the font" ;
proc sgplot data=have;
xaxis type=discrete valueattrs=(color=black size=12pt) min=0 max=20;
yaxis grid label="IMPRET/CXRET12M" valueattrs=(color=black size=12pt) max=&maxval min=&minval;
series x=var3 y=var1/ markers markerattrs=(symbol=CircleFilled color=blue) ;
series x=var3 y=var1/ markers markerattrs=(symbol=TriangleFilled color=red) ;
run;
title;
title2;
title3;
ods html close;
I am trying to increase the size of the font of the title and the legend. Also the text of the variables on the X and y axis. Can someone please help.
Check the docs for Title statements, example 3 in particular.
title3 font='Times New Roman' height=16pt "Title I would like to increase the size of the font" ;
proc sgplot data=sashelp.class;
scatter x=height y=weight / group=sex;
run;
title3;
Also note that:
Using TITLE without arguments cancels all existing titles.
@Agent1592 wrote:
ods html file="Figure1"; title " "; title2 " "; title3 "Title I would like to increase the size of the font" ; proc sgplot data=have; xaxis type=discrete valueattrs=(color=black size=12pt) min=0 max=20; yaxis grid label="IMPRET/CXRET12M" valueattrs=(color=black size=12pt) max=&maxval min=&minval; series x=var3 y=var1/ markers markerattrs=(symbol=CircleFilled color=blue) ; series x=var3 y=var1/ markers markerattrs=(symbol=TriangleFilled color=red) ; run; title; title2; title3; ods html close;
I am trying to increase the size of the font of the title and the legend. Also the text of the variables on the X and y axis. Can someone please help.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.