ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / DataPoint Class / DataPoint Constructor / DataPoint Constructor(Object,Object)
The X coordinate value of this DataPoint.
The Y coordinate value of this DataPoint.






In This Topic
    DataPoint Constructor(Object,Object)
    In This Topic
    Creates one DataPoint instance.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal x As System.Object, _
       ByVal y As System.Object _
    )
    'Usage
     
    
    Dim x As System.Object
    Dim y As System.Object
     
    Dim instance As New DataPoint(x, y)
    public DataPoint( 
       System.object x,
       System.object y
    )
    public DataPoint( 
        x: System.TObject;
        y: System.TObject
    ); 
    public function DataPoint( 
       x : System.Object,
       y : System.Object
    );
    public: DataPoint( 
       System.Object* x,
       System.Object* y
    )
    public:
    DataPoint( 
       System.Object^ x,
       System.Object^ y
    )

    Parameters

    x
    The X coordinate value of this DataPoint.
    y
    The Y coordinate value of this DataPoint.
    See Also