Skip to main content
All docs
V25.1
  • GanttTaskDependencyMappingInfo.SuccessorKey Property

    Specifies the name of the data field that contains information on the dependency’s successor ID.

    Namespace: DevExpress.Web.ASPxGantt

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

    NuGet Package: DevExpress.Web

    Declaration

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

    Property Value

    Type Default Description
    String "SuccessorID"

    A data field name.

    Remarks

    <dx:ASPxGantt ID="Gantt" runat="server" Width="100%" KeyFieldName="ID" ParentFieldName="ParentID" ...>
        <Mappings>
            <Dependency Key="ID" PredecessorKey="ParentID" SuccessorKey="DependentID" DependencyType="Type" />
            //...
        </Mappings>
        ...
    </dx:ASPxGantt>
    

    Concept

    Bind To Data

    Examples

    Online Demos

    See Also