BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
bmjepson
Fluorite | Level 6

When using unicode in a graph label, I am losing the effect of weight=bold and the font is not what I expect.  This may just apply to ODS RTF (which I'm not sure).  See this sample code:

 

ods rtf file = "H:\Figure.rtf";
ods graphics on / imagename="Figure";

title ;
footnote ;
proc sgplot data=sashelp.baseball;
scatter x=logsalary y=crhome/group=league;
xaxis label="Log(*ESC*){unicode '2081'x}(*ESC*){unicode '2080'x} Salary" 
type=log logstyle=logexpand labelattrs=(weight=bold family='arial');
yaxis label="Home Runs" labelattrs=(weight=bold family='arial');
keylegend;
;
run;
ods graphics off;
ods rtf close;

 

unicode_graph.png

The y-axis label is the correct font, is bold, and is vector quality.  The x-axis, using unicode, is not preserving any of those attributes (though it is hard to tell if the font is correct- it looks the same using family='arial unicode ms') .

 

On a related note, my figure legend is not vector quality, with or without unicode.

 

Are there any known solutions?

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

How does it look if you set the OUTPUTFMT=PNG?

 

ods graphics on / imagename="Figure" outputfmt=png;

View solution in original post

3 REPLIES 3
DanH_sas
SAS Super FREQ

How does it look if you set the OUTPUTFMT=PNG?

 

ods graphics on / imagename="Figure" outputfmt=png;
bmjepson
Fluorite | Level 6

It cleaned up the vector quality issue, bold and font, but I lost the subscripts from the unicode.

 

figure2.png

bmjepson
Fluorite | Level 6

This solution worked perfectly. Thanks Dan!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 764 views
  • 0 likes
  • 2 in conversation