Skip to main content

CrosshairOptionsBase.PopupTemplate Property

Gets or sets the template of the Crosshair label’s popup panel.

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

Declaration

public DataTemplate PopupTemplate { get; set; }

Property Value

Type Description
DataTemplate

The label popup template.

Remarks

A CrosshairSeriesLabelItem object is the data context for this template.

The image below demonstrates the Crosshair Cursor with a custom transparent popup template used in the example.

CustomPopupTemplate

Example

This example demonstrates how to customize the Crosshair Label.

The CrosshairOptionsBase.PopupTemplate property used in this example allows you to fully customize the Crosshair Label appearance.

View Example

<dxc:ChartControl.CrosshairOptions>
    <dxc:CrosshairOptions>
        <dxc:CrosshairOptions.PopupTemplate>
            <DataTemplate>
                <Border Background="#C0FFFFFF" 
                        BorderBrush="#C0C0C0C0" 
                        BorderThickness="1"
                        Padding="16">
                    <ItemsControl ItemsSource="{Binding PresentationData}">
                        <ItemsControl.ItemTemplate>
                            <DataTemplate>
                                <ContentPresenter Content="{Binding}" 
                                                  ContentTemplate="{Binding Path=CrosshairSeriesLabelTemplate}"/>
                            </DataTemplate>
                        </ItemsControl.ItemTemplate>
                    </ItemsControl>
                </Border>
            </DataTemplate>
        </dxc:CrosshairOptions.PopupTemplate>
    </dxc:CrosshairOptions>
</dxc:ChartControl.CrosshairOptions>
See Also