Member Junction
    Preparing search index...

    Dagre-specific layout configuration options.

    interface ERDDagreConfig {
        align?: "UL" | "UR" | "DL" | "DR";
        edgeSep?: number;
        nodeSep?: number;
        rankDir?: "TB" | "BT" | "LR" | "RL";
        ranker?: "network-simplex" | "tight-tree" | "longest-path";
        rankSep?: number;
    }
    Index

    Properties

    align?: "UL" | "UR" | "DL" | "DR"

    Alignment of nodes within their rank: 'UL', 'UR', 'DL', 'DR'. Default: undefined (centered)

    edgeSep?: number

    Separation between different edge paths. Default: 10

    nodeSep?: number

    Horizontal separation between nodes. Default: 50

    rankDir?: "TB" | "BT" | "LR" | "RL"

    Direction of the graph layout. Default: 'LR' (left-to-right)

    ranker?: "network-simplex" | "tight-tree" | "longest-path"

    Algorithm for ranking nodes: 'network-simplex', 'tight-tree', 'longest-path'. Default: 'network-simplex'

    rankSep?: number

    Vertical separation between ranks/layers. Default: 100