ComponentOne Chart for WPF and Silverlight
C1.WPF.C1Chart Namespace / Axis Class / PointToData Method
The point in chart view coordinates.
Optional offset.


In This Topic
    PointToData Method (Axis)
    In This Topic
    Transforms the point from chart view coordinates to the axis data coordinates.
    Syntax
    'Declaration
     
    
    Public Function PointToData( _
       ByVal pt As Point, _
       Optional ByVal offset As Point _
    ) As Point
    'Usage
     
    
    Dim instance As Axis
    Dim pt As Point
    Dim offset As Point
    Dim value As Point
     
    value = instance.PointToData(pt, offset)
    public Point PointToData( 
       Point pt,
       Point offset
    )

    Parameters

    pt
    The point in chart view coordinates.
    offset
    Optional offset.

    Return Value

    The point in axis data coordinates.
    See Also