Skip to main content
All docs
V25.1
  • DiagramEdgeMappingInfo.LineType Property

    Specifies the name of a data source field that provides an edge’s line type.

    Namespace: DevExpress.Web.ASPxDiagram

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

    NuGet Package: DevExpress.Web

    Declaration

    [DefaultValue("")]
    public string LineType { get; set; }

    Property Value

    Type Default Description
    String String.Empty

    The field name.

    Remarks

    The field assigned to the LineType property should contain values of the ConnectorLineType type or the corresponding integers.

    Tip

    Use the LineType property to customize the line type of an edge after it is bound to a data source (in the EdgeDataBound event).

    Online Demo

    Diagram - Data Binding

    Example

    <dx:ASPxDiagram ID="Diagram" runat="server" Width="100%" Height="600px" Units="Px"
        NodeDataSourceID="FlowNodeDemoDataSource" EdgeDataSourceID="FlowEdgeDemoDataSource" >
        <SettingsAutoLayout Type="Layered" Orientation="Vertical" />
        <Mappings>
            <Node Key="ID" Type="Type" Width="Width" Height="Height" Left="Left" Locked="Locked" Style="Style" 
            Text="Text" TextStyle="TextStyle" Top="Top" ZIndex="ZIndex"/>
            <Edge Key="ID" FromKey="FromID" ToKey="ToID" Text="Text" FromLineEnd="StartTip" FromPointIndex="StartPoint" 
            LineType="Type" Locked="Locked" Style="Style" TextStyle="TextStyle" ToLineEnd="EndTip" 
            ToPointIndex= "EndPoint" ZIndex="ZIndex"/>
        </Mappings>
    </dx:ASPxDiagram>
    
    See Also