Page 1 of 1

How to imitate MouseHover event in WPF Teechart

Posted: Tue Feb 10, 2009 6:32 am
by 13046610
Hi,
MouseHover event is not available for Teechart. 'MouseMove' event can't be used, since it gets fired as your mouse moves.
MouseHover should get fired as you hover the mouse over the point for some time e.g. like tooltip
Do you have any solution for it?

Regards,
Priya

Posted: Tue Feb 10, 2009 2:27 pm
by narcis
Hi Priya,

This is because TeeChart for WPF derives from System.Windows.UIElement class. MouseHover event is not implemented in this class as you can see here:

http://msdn.microsoft.com/en-us/library ... vents.aspx

Anyway, you can simulate this event using MouseEnter and MouseLeave events.

Hope this helps!