Page 1 of 1

Export Chart

Posted: Sun Jun 23, 2013 5:22 am
by 16565592
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

Re: Export Chart

Posted: Wed Jun 26, 2013 9:03 am
by yeray
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;