Export Chart

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
sunman4008
Newbie
Newbie
Posts: 18
Joined: Tue Apr 09, 2013 12:00 am

Export Chart

Post by sunman4008 » Sun Jun 23, 2013 5:22 am

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
Attachments
screenshot.png
screenshot.png (16.12 KiB) Viewed 4242 times

Yeray
Site Admin
Site Admin
Posts: 9601
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Export Chart

Post by Yeray » Wed Jun 26, 2013 9:03 am

Hi,

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,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply