Page 1 of 1

TeeChart Standard PrintPreview

Posted: Mon Mar 03, 2014 10:52 pm
by 16868643
How can I do a PrintPreview with TeeChart Standard commercial? I can't find a preview component, is it a feature of the pro version?

Re: TeeChart Standard PrintPreview

Posted: Tue Mar 04, 2014 9:37 am
by yeray
Hello,

What exact TeeChart version (build), IDE and language are you using?
Thanks in advance.

Re: TeeChart Standard PrintPreview

Posted: Tue Mar 04, 2014 10:02 am
by 16868643
I use TeeChart Standard 2014.10.140220 commercial and RAD Studio XE5 enterprise.

Re: TeeChart Standard PrintPreview

Posted: Tue Mar 04, 2014 10:03 am
by 16868643
Hi, I forgot the language is Delphi!

Regards
Peter

Re: TeeChart Standard PrintPreview

Posted: Wed Mar 05, 2014 8:05 am
by yeray
Hello Peter,

The Print Preview component is only available with the Pro version, but the window is still available with the Standard version. Ie:

Code: Select all

uses VCLTee.TeePrevi;

procedure TForm1.Button1Click(Sender: TObject);
begin
  TeePreview(Self,Chart1);
end;

Re: TeeChart Standard PrintPreview

Posted: Wed Mar 05, 2014 8:15 pm
by 16868643
Hello Yeray,

thank you so much! I was seeking exactly for this function!

Best Regards,

Peter