XY Chart NET 3 Control Reference
CrossHairsDeltaNotSelected Event
This event is generated whenever the user unselects the delta crosshairs toolbar button, or selects another toolbar button (see Toolbar).   Use this event to perform operations specific to whenever the delta crosshairs is no longer selected.
Syntax
[Visual Basic]
Event CrossHairsDeltaNotSelected()
[C#]
CrossHairsDeltaNotSelected()
[C++]
CrossHairsDeltaNotSelected()
       
Example
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

Private Sub XYChartNETCtl1_CrossHairsDeltaNotSelected() Handles XYChartNETCtl1.CrossHairsDeltaNotSelected
   X0Label.Visible = False  'Hide label used to display first delta crosshairs' x-coord
   X1Label.Visible = False  'Hide label used to display second delta crosshairs' x-coord
   Y0Label.Visible = False  'Hide label used to display first delta crosshairs' y-coord
   Y1Label.Visible = False  'Hide label used to display second delta crosshairs' y-coord
End Sub
                       
                       
See Also

 

 


© 2003 - 2013 ControlEng Corporation. All rights reserved.