Jump to content
Software FX Community

Mouse Event


karin

Recommended Posts

I want to use the function "MarkerShape"  by clicking on the element of the graphic. 

 I am activating Mouse Event like that:

chart1.MouseClick +=

new MouseEventHandler(test_mouse);

But nothing happens.

What could it be wrong?

thanks

karin

 

 

 

Link to comment
Share on other sites

Chart FX provides several mouse events that allow you to customize how the chart reacts to mouse interaction coming from the user, they are: DoubleClick, MouseDown, MouseMove and MouseUp. You may process these events to add specific functionality in your application. 

All mouse events return a MouseEventArgsX object which contains all necessary data to handle the event: Buttons, Clicks, HitType, Points, Series, X, Y, etc.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...