XY Chart NET 3 Control Reference
CrossHairsLeave Event
This event is generated whenever the chart is in the crosshairs mode (see Toolbar) and the user moves the mouse cursor outside of the plot area.  Use this event to perform operations specific to whenever the crosshairs is not visible.
Syntax
[Visual Basic]
Event CrossHairsLeave()
[C#]
CrossHairsLeave()
[C++]
CrossHairsLeave()
       
Example
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

Private Sub XYChartNETCtl1_CrossHairsLeave() Handles XYChartNETCtl1.CrossHairsLeave
   X0Label.Visible = False  'Hide label used to display crosshairs' x-coord
   Y0Label.Visible = False  'Hide label used to display crosshairs' y-coord
End Sub
                       
                       
See Also

 

 


© 2003 - 2013 ControlEng Corporation. All rights reserved.