Member Junction
    Preparing search index...

    Interface AfterSegmentCollapseArgs

    Arguments for the afterSegmentCollapse event. Emitted after a time segment is collapsed.

    interface AfterSegmentCollapseArgs {
        endDate: Date;
        errorMessage?: string;
        eventCount: number;
        label: string;
        segment: TimelineSegment;
        startDate: Date;
        success: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    endDate: Date

    End date of the segment.

    errorMessage?: string

    Error message if the operation failed. Only populated when success is false.

    eventCount: number

    Number of events in the segment.

    label: string

    The segment's display label.

    The segment being interacted with.

    startDate: Date

    Start date of the segment.

    success: boolean

    Whether the operation completed successfully. Will be false if an error occurred during the operation.