Document Solutions for Excel, .NET Edition | Document Solutions
GrapeCity.Documents.Excel.Drawing Namespace / IChart Interface / AddConnector Method
The connector type to add.
The horizontal position of the connector's starting point relative to the upper-left corner of the chart area, in points.
The vertical position of the connector's starting point relative to the upper-left corner of the chart area, in points.
The horizontal position of the connector's end point relative to the upper-left corner of the chart area, in points.
The veritcal position of the connector's end point relative to the upper-left corner of the chart area, in points.
In This Topic
    AddConnector Method (IChart)
    In This Topic
    Creates a connector. Returns the IShape object that represents the new connector.
    Syntax
    IShape AddConnector( 
       ConnectorType type,
       System.double beginX,
       System.double beginY,
       System.double endX,
       System.double endY
    )

    Parameters

    type
    The connector type to add.
    beginX
    The horizontal position of the connector's starting point relative to the upper-left corner of the chart area, in points.
    beginY
    The vertical position of the connector's starting point relative to the upper-left corner of the chart area, in points.
    endX
    The horizontal position of the connector's end point relative to the upper-left corner of the chart area, in points.
    endY
    The veritcal position of the connector's end point relative to the upper-left corner of the chart area, in points.

    Return Value

    The IShape object.
    See Also