Hello,
How can I make the cursor (cssHorizontal) to stay only with horizontal movements ?
I would like that my cursor follows the mouse and snaps to a series of my line chart (which it does), but it should not react on vertical movements of the mouse, just on horizontal movements.
Any Ideas?
George
CursorTool: snap to horizontal movements only?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi George,
Have you tried using something like this?
Have you tried using something like this?
Code: Select all
With ChartTool1 do
begin
Style:=cssVertical;
Snap:=true;
FollowMouse:=true;
Series:=Series1;
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 |