Member Junction
    Preparing search index...

    A dependency link (arrow) between two Gantt items.

    interface GanttLinkData {
        ID: string;
        SourceID: string;
        TargetID: string;
        Type?: "FS" | "SS" | "FF" | "SF";
    }
    Index

    Properties

    ID: string

    Unique identifier for this link.

    SourceID: string

    ID of the source (predecessor) item.

    TargetID: string

    ID of the target (successor) item.

    Type?: "FS" | "SS" | "FF" | "SF"

    Dependency type. Default: 'FS' (Finish-to-Start).