Hi There
We would like to have MouseMove Event for Line, ASAP. Appreciate if you can provide it.
Best Regards
Srinivas.
MouseMove Event for Line
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Srinivas,
You can already do that using TeeChart's MouseMove event, for example:
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 |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 41
- Joined: Wed Jan 30, 2008 12:00 am