MouseEnter Event
Posted: Fri Apr 21, 2006 1:52 am
There is a MouseEnter Event in the Series Class, can I get the series's valueIndex by making use of this event? Thx
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
private void tChart1_MouseMove(object sender, MouseEventArgs e)
{
int valueIndex = line1.Clicked(e.X,e.Y);
if (valueIndex != -1)
{
//Your code here
}
}