MouseMove Event for Line

Ideas and wishes for TeeChart
Post Reply
Srinivas Avancha
Newbie
Newbie
Posts: 41
Joined: Wed Jan 30, 2008 12:00 am

MouseMove Event for Line

Post by Srinivas Avancha » Mon Apr 21, 2008 8:45 pm

Hi There

We would like to have MouseMove Event for Line, ASAP. Appreciate if you can provide it.

Best Regards
Srinivas.

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

Post by Narcís » Tue Apr 22, 2008 10:30 am

Hi Srinivas,

You can already do that using TeeChart's MouseMove event, for example:

Code: Select all

		void tChart1_MouseMove(object sender, MouseEventArgs e)
		{
			if (fastline1.Clicked(e.X,e.Y) != -1)
			{
				//Add your code here.
			}
		}
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

Srinivas Avancha
Newbie
Newbie
Posts: 41
Joined: Wed Jan 30, 2008 12:00 am

Post by Srinivas Avancha » Tue Apr 22, 2008 6:35 pm

Hi Narcís,

Thanks for the reply.

Post Reply