Back to Devexpress

CrosshairOptions Class

wpf-devexpress-dot-xpf-dot-charts-304a067f.md

latest3.9 KB
Original Source

CrosshairOptions Class

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

Namespace : DevExpress.Xpf.Charts

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

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public class CrosshairOptions :
    CrosshairOptionsBase,
    ICrosshairOptions
vb
Public Class CrosshairOptions
    Inherits CrosshairOptionsBase
    Implements 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.

xaml
<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 snippet (auto-collected from DevExpress Examples) contains a reference 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.

wpf-charts-custom-draw-crosshair-cursor/CS/CrosshairCustomDraw/MainWindow.xaml#L11

xml
<dxc:ChartControl.CrosshairOptions>
    <dxc:CrosshairOptions ShowArgumentLabels="True"
                          ShowArgumentLine="True"

Inheritance

Object DispatcherObject DependencyObject Freezable ChartDependencyObject CrosshairOptionsBase CrosshairOptions

See Also

CrosshairOptions Members

DevExpress.Xpf.Charts Namespace