Member Junction
    Preparing search index...

    A single item (bar) on the Gantt timeline.

    interface GanttItemData {
        Data?: any;
        Duration?: number;
        EndDate?: Date;
        ID: string;
        Name: string;
        Open?: boolean;
        ParentID?: string;
        Progress?: number;
        StartDate: Date;
    }
    Index

    Properties

    Data?: any

    Arbitrary consumer data passed through with events.

    Duration?: number

    Duration in days. Used when EndDate is not provided.

    EndDate?: Date

    End date for the bar. If omitted, Duration is used instead.

    ID: string

    Unique identifier.

    Name: string

    Display name shown in the grid and on the bar.

    Open?: boolean

    Whether this item's children are expanded in the tree. Default: true.

    ParentID?: string

    Parent item ID for tree hierarchy. Omit for top-level items.

    Progress?: number

    Completion percentage (0–100). Rendered as a filled portion of the bar.

    StartDate: Date

    Start date for the bar.