Hi all, I have created a panel plot using SGPANEL. I would like to change the fonts within the plot to Courier/Courier New. I have tried creating a new style using proc template (see code below) and ods graphics but with no luck. Any advice on how to change the fonts and save the output to a pdf file would be much appreciated. proc template; define style myfont; parent=styles.default; class GraphFonts / 'GraphDataFont' = ("Courier_New",10pt) 'GraphUnicodeFont' = ("Courier_New",10pt) 'GraphValueFont' = ("Courier_New",10pt) 'GraphLabelFont' = ("Courier_New",10pt) 'GraphFootnoteFont' = ("Courier_New",10pt) 'GraphTitleFont' = ("Courier_New",10pt) 'GraphAnnoFont' = ("Courier_New",10pt); end; run; ods listing style=myfont; ODS PDF FILE='C:\Projects\SummaryFigure.PDF'; ods graphics on;
... View more