SetCrosshairsMode Method

Use this method to programmatically enable or disable the crosshairs mode.   This method is equivalent to selecting the Crosshairs button in the Toolbar.

[Visual Basic]
Sub SetCrosshairsMode(ButtonSelected As Boolean)
[C#]
void XYChartNETCtl.SetCrosshairsMode(bool ButtonSelected)
[C++]
void SetCrosshairsMode(bool)

Parameters

ButtonSelected
Boolean value indicating the crosshairs mode.  TRUE indicates crosshairs is enabled, and the Crosshairs button in the Toolbar is displayed as selected; FALSE indicates crosshairs is disabled, and the Crosshairs button in the Toolbar is displayed as unselected.

Remarks

The crosshairs characteristics are determined by the Crosshairs property.

Example

XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

[Visual Basic]
If XYChartNETCtl1.Toolbar.Buttons.CrosshairsPressed Then
   XYChartNETCtl1.SetCrosshairsMode(False)   'Disable the Crosshairs; a Refresh call is not required
Else
   XYChartNETCtl1.SetCrosshairsMode(True)    'Enable the Crosshairs; a Refresh call is not required
End If

[C#]

[C++]

See Also

Methods | SetCrosshairsPosition