just a quick question: is it possible to use the chart previewer and the chart printing funcitons (working very well

(I use a timage instead of the tool image because i need to use events like OnMouse---...)
thank you
C.
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
ChartPreviewer1.Execute;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues();
Chart1.Draw;
end;
procedure TForm1.Chart1AfterDraw(Sender: TObject);
begin
Chart1.Canvas.Draw(100,100,Image1.Picture.Graphic);
end;
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
![]() ![]() ![]() ![]() ![]() ![]() |
Instructions - How to post in this forum |