XY Chart NET 3 Control Reference > Events > CrossHairsDeltaNotSelected Event |
[Visual Basic] Event CrossHairsDeltaNotSelected() |
[C#] CrossHairsDeltaNotSelected() |
[C++] CrossHairsDeltaNotSelected() |
' 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