Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CrosshairOptions Class

Contains settings that define how to draw a crosshair cursor within a chart.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v24.2.dll

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public class CrosshairOptions :
    CrosshairOptionsBase,
    ICrosshairOptions

The following members return CrosshairOptions objects:

#Remarks

Use the ChartControl.CrosshairOptions property to get access to the CrosshairOptions object.

The following XAML demonstrates how this can be done.

<Window x:Class="CrosshairCursor.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:dxc="http://schemas.devexpress.com/winfx/2008/xaml/charts"
        Title="MainWindow" Height="350" Width="525" >
    <Grid>
        <dxc:ChartControl >         
            <dxc:ChartControl.CrosshairOptions>
                <dxc:CrosshairOptions ShowArgumentLabels="True" ShowArgumentLine="True" 
                                      ShowValueLabels="True" ShowValueLine="True" 
                                      CrosshairLabelMode="ShowCommonForAllSeries">
                    <dxc:CrosshairOptions.CommonLabelPosition>
                        <dxc:CrosshairMousePosition Offset="120,120" />
                    </dxc:CrosshairOptions.CommonLabelPosition>
                </dxc:CrosshairOptions>
            </dxc:ChartControl.CrosshairOptions>          
        </dxc:ChartControl>
    </Grid>
</Window>

For more information on how to customize the crosshair cursor, see the Crosshair Cursor topic.

The following code snippets (auto-collected from DevExpress Examples) contain references to the CrosshairOptions class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also