Skip to main content
All docs
V25.1
  • DiagramDefaultItemProperties.ConnectorLineStart Property

    Specifies the default tip of a connector’s start point.

    Namespace: DevExpress.Web.ASPxDiagram

    Assembly: DevExpress.Web.ASPxDiagram.v25.1.dll

    NuGet Package: DevExpress.Web

    Declaration

    [DefaultValue(ConnectorLineEnding.None)]
    public ConnectorLineEnding ConnectorLineStart { get; set; }

    Property Value

    Type Default Description
    ConnectorLineEnding None

    The type of the tip.

    Available values:

    Name Description
    None

    A connector ends without any special element.
    Diagram - Connector Ends without Any Special Element

    Arrow

    A connector ends with an arrow.
    Diagram - Connector Ends with an Arrow

    OutlinedTriangle

    A connector ends with an outlined triangle.
    Diagram - Connector Ends with an Outlined Triangle

    FilledTriangle

    A connector ends with a filled triangle.
    Diagram - Connector Ends with a Filled Triangle

    Remarks

    The ConnectorLineStart property specifies a tip that is displayed at a connector’s start point if the FromLineEnd property does not provide another value.

    <dx:ASPxDiagram ID="Diagram" runat="server" 
        NodeDataSourceID="DepartmentDemoDataSource" OnNodeInserted="Diagram_NodeInserted">
        <Mappings>
            <Node Key="ID" Text="DepartmentName" ParentKey="ParentID" />
        </Mappings>
        <DefaultItemProperties 
            ConnectorLineEnd="None" 
            ConnectorLineStart="FilledTriangle" 
            ConnectorLineType="Straight" 
            Style="fill: #C0C0C0; stroke-width: 3" 
            TextStyle="fill: #ff0000;" />
    </dx:ASPxDiagram>
    
    See Also