TimelineKit API
    Preparing search index...

    Interface CardRenderArgs

    Arguments passed to the custom card rendering callback.

    interface CardRenderArgs {
        card: KanbanCard;
        color: KanbanCardColor;
        column: KanbanColumn;
        element: HTMLElement;
        swimlane: KanbanSwimlane | null;
    }
    Index

    Properties

    The card being rendered.

    Resolved color for this card.

    column: KanbanColumn

    The column this card belongs to.

    element: HTMLElement

    The DOM element for the card. Modify its content/style to customize rendering.

    swimlane: KanbanSwimlane | null

    The swimlane this card belongs to, or null.