Hi:
When I run this code in SAS 9.2 on Windows (after I insert umlauts in the data), I see the umlaut in the tabular output from PROC PRINT and in the LEGEND, TITLE and FOOTNOTE from PROC GCHART...using ODS PDF and the default template for PDF.
Perhaps you are having a font issue and a font with umlauts is not available, even though the data has umlauts. Or, it could be an NLS issue with system settings. This may be an issue for Tech Support. If you run the code below and do NOT see umlauts in the output, then I would recommend opening a track with Tech Support for more help.
cynthia
[pre]
** put some umlauts in the data so they will be in the legend;
** and in the report as well;
data shoes;
set sashelp.shoes;
where region in ('Asia', 'Pacific', 'Canada') and
product contains 'Women';
region = translate(region,'ä','a');
region = translate(region,'Ä','A');
region = translate(region,'ë','e');
region = translate(region,'ö','o');
region = translate(region,'ü','u');
product = translate(product,'Ä','A');
product = translate(product,'ä','a');
product = translate(product,'ë','e');
product = translate(product,'ö','o');
product = translate(product,'ü','u');
run;
data class;
set sashelp.class;
name = translate(name,'ä','a');
name = translate(name,'ë','e');
name = translate(name,'ö','o');
name = translate(name,'ü','u');
run;
ods listing close;
ods pdf file='c:\temp\umlaut_grf.pdf';
proc print data=class;
title 'This is my title: ä ë ö ü Ä Ë Ö Ü';
footnote 'This is my footnote: ä ë ö ü Ä Ë Ö Ü';
run;
ods pdf text='This is my other text: ä ë ö ü Ä Ë Ö Ü';
proc gchart data=shoes;
title 'This is my title: ä ë ö ü Ä Ë Ö Ü';
footnote 'This is my footnote: ä ë ö ü Ä Ë Ö Ü';
vbar product / subgroup=region sumvar=sales legend;
run;
quit;
ods pdf close;
title; footnote;
[/pre]