The instructions I'm using to export the chart are:
Code: Select all
if fileName.EndsWith('.pdf') then begin
with TPDFExportFormat.Create do try
SaveTofile(Chart, fileName);
finally
Free;
end;
end;
Nice to have, would be:
- the file title:
now the /Title option is fixed to 'TeeChart Export', we would like to have something related to the file content. - the text encoding:
it seems that the default encoding of the text in the pdf is Windows 1252.
This is OK for most western Europa languages, but it can not encode est European and Asian characters.