Hi,
I am using the Export functionality. I am not using the editor, I am actually calling the function " TeeExport(Self,Chart1);
How can I hide the Natiev and The Data taps ? I am uploading a screen shot
Export Chart
-
- Newbie
- Posts: 18
- Joined: Tue Apr 09, 2013 12:00 am
Export Chart
- Attachments
-
- screenshot.png (16.12 KiB) Viewed 4279 times
Re: Export Chart
Hi,
You can use this instead of TeeExport:
You can use this instead of TeeExport:
Code: Select all
With TTeeExportForm.Create(Self) do
try
ExportPanel:=Chart1;
InitDir:='';
TabData.TabVisible:=false;
TabNative.TabVisible:=false;
ShowModal;
finally
Free;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |