Hello,
How do I add a chart to an existing PDF using TeeSaveToPDFFile?
I want to create several charts, one at a time, and add them to the same PDF.
Thanks,
Dave
Save charts to an existing PDF
Re: Save charts to an existing PDF
Anyone have suggestions on how to do this? A different tool perhaps?
One of our customers wants the ability to export several graphs into the same PDF.
Thanks,
Dave
One of our customers wants the ability to export several graphs into the same PDF.
Thanks,
Dave
Re: Save charts to an existing PDF
Hello,
This sounds exactly as the feature request in the ticket #1473.
Feel free to add your mail to the CC list.
This sounds exactly as the feature request in the ticket #1473.
Feel free to add your mail to the CC list.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Save charts to an existing PDF
Thanks Yeray.
It looks like this request goes back to 2016. Do you know if this Is a feature that is to be added soon? If not, I will look for another solution.
Dave
It looks like this request goes back to 2016. Do you know if this Is a feature that is to be added soon? If not, I will look for another solution.
Dave
Re: Save charts to an existing PDF
Hello,
We've just added a new AddPanel function that allows you to add several charts to pdf to be created.
So, with the next release, it will be possible to do this:
Here the resulting pdf:
We've just added a new AddPanel function that allows you to add several charts to pdf to be created.
So, with the next release, it will be possible to do this:
Code: Select all
with TPDFExportFormat.Create do
try
for i:=0 to High(Charts) do
AddPanel(Charts[i]);
SaveToFile(fileName);
finally
Free;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Save charts to an existing PDF
Yeray,
Excellent! It works perfectly!
Thanks for all your help.
Dave
Excellent! It works perfectly!
Thanks for all your help.
Dave
Re: Save charts to an existing PDF
Great! Thanks for the feedback!
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |