Hi,
I want to save my chart in format gif but I don't know the method (only SaveToBitmapFile).
Help,
Thanks,
www.merops.com
Save my chart in format gif
Hi.
All export examples are demonstrated in TeeChart demo. In your case, the following example should give you precise answer:
"All Features -> Exporting -> Chart Picture -> GIF"
Here is the actual gif export implementation (one of many different solutions you can use):
All export examples are demonstrated in TeeChart demo. In your case, the following example should give you precise answer:
"All Features -> Exporting -> Chart Picture -> GIF"
Here is the actual gif export implementation (one of many different solutions you can use):
Code: Select all
Uses ..., TeeGif;
With TGIFExportFormat.Create(Self) do
try
Panel := Chart1;
SaveToFile('c:\temp\test.gif');
finally
Free;
end;
Marjan Slatinek,
http://www.steema.com
http://www.steema.com