Emailing a Chart
Emailing a Chart
Is is possible to email an FMX TChart?
Re: Emailing a Chart
Hello Bruce,
Have you tried to export&import the charts to&from .tee files?
Have you tried to export&import the charts to&from .tee files?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Emailing a Chart
I cannot find the export. There doesn't seem to be an FMXTee.TEExport equivalent.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Emailing a Chart
Hi Bruce,
Yes, you can do this:
Yes, you can do this:
Code: Select all
uses FMXTee.Store;
procedure TForm1.FormCreate(Sender: TObject);
begin
SaveChartToFile(TCustomChart(Chart1), 'g:\temp\chart1.tee');
end;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |