Skip to main content
A newer version of this page is available. .

DiagramDefaultItemProperties.ConnectorLineStart Property

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

Namespace: DevExpress.Web.ASPxDiagram

Assembly: DevExpress.Web.ASPxDiagram.v20.2.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.

Arrow

A connector ends with an arrow.

OutlinedTriangle

A connector ends with an outlined triangle.

FilledTriangle

A 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