Skip to main content
A newer version of this page is available. .

Changing the Crosshair Cursor Layout

  • 2 minutes to read

This topic explains how to change the crosshair cursor snap mode and the crosshair’s common label position.

Layout Customization

Specify the crosshair cursor snap mode

The crosshair snap mode can be specified using the CrosshairOptions.SnapMode property. This property defines how a crosshair cursor should detect a series point to which to snap.

Two snap modes are available: NearestArgument (the default mode) and NearestValue.

The following image shows the NearestValue snap mode in action:

SnapNearestValue

Set the crosshair cursor position

In a multiple series chart, a crosshair cursor label is displayed common for all series by default. You can specify its position in two modes:

Use the CrosshairOptions.CommonLabelPosition property to get access to one of the listed modes.

For instance, you can invoke the Choose Crosshair Label Position dialog in the Properties window for this property clicking the ellipsis button.

ChooseCrosshairLabelPositionDialog

You can change the current offset for both of the common crosshair label modes using the CrosshairLabelPosition.OffsetX and CrosshairLabelPosition.OffsetY properties.

For instance, the following image shows a common crosshair label in the crosshair free mode with the CrosshairLabelPosition.OffsetX and CrosshairLabelPosition.OffsetY properties set to (120,120), correspondingly.

FreePositionWithOffset

Moreover, you can specify the position of a common crosshair label within its parent element using CrosshairFreePosition.DockCorner and CrosshairFreePosition.DockTarget properties in the CrosshairFreePosition mode.

The image below demonstrates a common crosshair label docked to the RightTop chart corner.

FreeWithDockCorner

For additional information on chart interaction, refer to the End-User Interaction section.

See Also