Print Previewer

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
tbonejo
Newbie
Newbie
Posts: 73
Joined: Wed Sep 06, 2006 12:00 am
Contact:

Print Previewer

Post by tbonejo » Thu Nov 16, 2006 4:58 pm

If using the print previewer how do I set it so I can use a chart panel with a bunch of charts on it to do the preview rather than 1 chart?


Thanks,

Tom
Tom

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Fri Nov 17, 2006 8:43 am

Hi Tom,

You should do something like in the All Features\Welcome!\Printing\Multiple Charts example in the features demo. You'll find the features demo at TeeChart's program group.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

tbonejo
Newbie
Newbie
Posts: 73
Joined: Wed Sep 06, 2006 12:00 am
Contact:

Post by tbonejo » Fri Nov 17, 2006 12:27 pm

Narcis,

Im doing that already, Im wondering if with the Chart Previewer showing more than 1 chart in the print preview.


Thanks,

Tom
Tom

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Fri Dec 01, 2006 12:49 pm

Hi Tom,

you should be able to do this by using the following code :

Code: Select all

procedure TForm1.ChartPreviewer1Show(Sender: TObject);
begin
ChartPreviewer1.PreviewPanel.Panels.Add(Chart2)
end;

Post Reply