Is it possible to use SAS/Graph line or stroke fonts in SGPLOT ? I ask because I eventually want to use a custom font created with PROC GFONT.
This sample suggests no 😞
ods html file='plot.html';
proc sgplot data=sashelp.class;
title "Scatter!";
scatter x=age y=weight;
run;
proc sgplot data=sashelp.class;
title f=Swiss "Scatter!";
scatter x=age y=weight;
run;
proc gplot data=sashelp.class;
title f=Swiss "Scatter!";
plot weight * age;
run;
ods html close;
RichardADeVenezia_0-1604801179154.png
There is no PROC SGGFONT.
Might there be some trick to coerce SG* into using the old fonts (or a GFONT created font) ?