FlexChart | ComponentOne
C1.Win.FlexChart.4.5.2 Assembly / C1.Chart Namespace / IRenderEngine Interface / DrawLine Method
x-coordinate of first point.
y-coordinate of first point.
x-coordinate of second point.
y-coordinate of second point.

In This Topic
    DrawLine Method (IRenderEngine)
    In This Topic
    Draw line between two points using current stroke attributes.
    Syntax
    'Declaration
     
    Sub DrawLine( _
       ByVal x1 As System.Double, _
       ByVal y1 As System.Double, _
       ByVal x2 As System.Double, _
       ByVal y2 As System.Double _
    ) 
    void DrawLine( 
       System.double x1,
       System.double y1,
       System.double x2,
       System.double y2
    )

    Parameters

    x1
    x-coordinate of first point.
    y1
    y-coordinate of first point.
    x2
    x-coordinate of second point.
    y2
    y-coordinate of second point.
    See Also