Theia API Documentation v1.71.0
    Preparing search index...
    interface GraphRow {
        color: number;
        edges: readonly GraphEdge[];
        hasContinuation: boolean;
        hasTopLine: boolean;
        lane: number;
    }
    Index

    Properties

    color: number

    Color index for the commit node dot.

    edges: readonly GraphEdge[]

    Edges crossing or originating on this row.

    hasContinuation: boolean

    Whether the commit's lane continues downward (i.e. first parent stays in the same lane). When false, no bottom line segment is drawn below the commit circle (root commit or merge convergence where the lane is freed).

    hasTopLine: boolean

    Whether there is an incoming line from above on the commit's lane (i.e. the commit was referenced as a parent by an earlier row). When false, no top line segment is drawn above the commit circle.

    lane: number

    Lane index where the commit node is rendered.