Chart3D for WPF and Silverlight | ComponentOne
C1.WPF.C1Chart3D Namespace / C1Chart3D Class / PointToData Method


In This Topic
    PointToData Method (C1Chart3D)
    In This Topic
    Converts screen control coordinates to data coordinates. Returns null if conversion is not possible.
    Syntax
    'Declaration
     
    
    Public Function PointToData( _
       ByVal screenPoint As Point _
    ) As Nullable(Of Point3D)
    'Usage
     
    
    Dim instance As C1Chart3D
    Dim screenPoint As Point
    Dim value As Nullable(Of Point3D)
     
    value = instance.PointToData(screenPoint)
    public Nullable<Point3D> PointToData( 
       Point screenPoint
    )

    Parameters

    screenPoint

    Return Value

    3D point in data coordinates.
    See Also