My procedure is:
1. add series
2. add cursor tool...set settings to cursor tool
3. set the position to 0, ChartTool1->XValue1
But the cursor shown is in the middle?
Cursor Tool Position in center
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Herman,
This works fine doing something like this:
This works fine doing something like this:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues(1000);
Chart1.Draw;
end;
procedure TForm1.Chart1AfterDraw(Sender: TObject);
begin
ChartTool1.XValue:=0;
ChartTool1.YValue:=0;
end;
Best Regards,
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 |