Page 1 of 1

Print Previewer

Posted: Thu Nov 16, 2006 4:58 pm
by 9242408
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

Posted: Fri Nov 17, 2006 8:43 am
by narcis
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.

Posted: Fri Nov 17, 2006 12:27 pm
by 9242408
Narcis,

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


Thanks,

Tom

Posted: Fri Dec 01, 2006 12:49 pm
by Pep
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;