Member Junction
    Preparing search index...

    Defines a column in the Gantt grid (left side).

    interface GanttColumnDef {
        Align?: "left" | "center" | "right";
        Label: string;
        Name: string;
        Template?: (item: any) => string;
        Tree?: boolean;
        Width?: string | number;
    }
    Index

    Properties

    Align?: "left" | "center" | "right"

    Text alignment.

    Label: string

    Display label for the column header.

    Name: string

    Internal field name used by DHTMLX (e.g. 'text', 'start_date', 'duration').

    Template?: (item: any) => string

    Custom template function for cell rendering. Receives the DHTMLX task object.

    Tree?: boolean

    Show as tree column (with expand/collapse). Only one column should be tree.

    Width?: string | number

    Column width in pixels. Use '*' for flex.