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

Chart3DControl.CalcHitInfo(Point) Method

Returns information on the chart elements located at the specified point.

Namespace: DevExpress.Xpf.Charts

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Charts, DevExpress.Wpf.Charts

Declaration

public Chart3DHitInfo CalcHitInfo(
    Point point
)

Parameters

Name Type Description
point Point

The test point coordinates relative to the top-left corner of the chart.

Returns

Type Description
Chart3DHitInfo

The information about chart elements located at the test point.

Example

This example shows coordinates for a surface point and series point marker clicked in a 3D chart:

<dxc:Chart3DControl x:Name="chart" MouseUp="Chart3DControl_MouseUp">
    ...
    <dxc:Series3DStorage>
        <dxc:Series3D DisplayName="Function">
            ...
            <dxc:Series3D.View>
                <dxc:SurfaceSeriesView MarkerVisible="True">
                    ...
                </dxc:SurfaceSeriesView>
            </dxc:Series3D.View>
        </dxc:Series3D>
    </dxc:Series3DStorage>
</dxc:Chart3DControl>
See Also