Page 1 of 1

MouseMove Event for Line

Posted: Mon Apr 21, 2008 8:45 pm
by 13048149
Hi There

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

Best Regards
Srinivas.

Posted: Tue Apr 22, 2008 10:30 am
by narcis
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.
			}
		}

Posted: Tue Apr 22, 2008 6:35 pm
by 13048149
Hi NarcĂ­s,

Thanks for the reply.