@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface TimelineInfo

    Complete timeline metadata for the Gantt chart.

    interface TimelineInfo {
        columns: readonly TimelineColumn[];
        groups: readonly TimelineGroup[];
        rangeEnd: Date;
        rangeStart: Date;
        totalDays: number;
    }
    Index

    Properties

    columns: readonly TimelineColumn[]

    Individual columns in the sub-header row.

    groups: readonly TimelineGroup[]

    Top-level header groups.

    rangeEnd: Date

    End of the visible range (midnight UTC).

    rangeStart: Date

    Start of the visible range (midnight UTC).

    totalDays: number

    Total number of day-units in the range.