issue_tree
    Preparing search index...

    Interface RenderOptions

    Options for renderGraph. Carries every layout knob the CLI exposes; svg/png/jpeg all share the same layout pipeline so they share the same options.

    interface RenderOptions {
        concentrate?: boolean;
        edgeMinlen?: number;
        edgeStyle?: EdgeStyle;
        engine?: GraphvizEngine;
        format: OutputFormat;
        graphMargin?: number;
        graphPad?: number;
        issueShape?:
            | "box"
            | "polygon"
            | "ellipse"
            | "oval"
            | "circle"
            | "egg"
            | "triangle"
            | "diamond"
            | "trapezium"
            | "parallelogram"
            | "house"
            | "pentagon"
            | "hexagon"
            | "septagon"
            | "octagon"
            | "doublecircle"
            | "doubleoctagon"
            | "tripleoctagon"
            | "Mdiamond"
            | "Msquare"
            | "Mcircle"
            | "square"
            | "star"
            | "note"
            | "tab"
            | "folder"
            | "box3d"
            | "component"
            | "cylinder"
            | "rectangle";
        nodeMargin?: string;
        nodesep?: number;
        packmode?: "off"
        | "node"
        | "clust"
        | "graph"
        | "array";
        prShape?:
            | "box"
            | "polygon"
            | "ellipse"
            | "oval"
            | "circle"
            | "egg"
            | "triangle"
            | "diamond"
            | "trapezium"
            | "parallelogram"
            | "house"
            | "pentagon"
            | "hexagon"
            | "septagon"
            | "octagon"
            | "doublecircle"
            | "doubleoctagon"
            | "tripleoctagon"
            | "Mdiamond"
            | "Msquare"
            | "Mcircle"
            | "square"
            | "star"
            | "note"
            | "tab"
            | "folder"
            | "box3d"
            | "component"
            | "cylinder"
            | "rectangle";
        rankdir?: RankDir;
        ranksep?: number;
        splines?: Splines;
    }
    Index

    Properties

    concentrate?: boolean

    When true, merge parallel edges with shared endpoints.

    edgeMinlen?: number

    Minimum rank distance per edge. Graphviz default 1.

    edgeStyle?: EdgeStyle

    How edges are visually distinguished; defaults to 'color'.

    engine?: GraphvizEngine

    Graphviz layout engine; undefined leaves the engine's default in place.

    format: OutputFormat

    Which output format to produce.

    graphMargin?: number

    Outer page margin, in inches. Graphviz default 0.5.

    graphPad?: number

    Outer pad around the whole graph, in inches. Graphviz default ~0.055.

    issueShape?:
        | "box"
        | "polygon"
        | "ellipse"
        | "oval"
        | "circle"
        | "egg"
        | "triangle"
        | "diamond"
        | "trapezium"
        | "parallelogram"
        | "house"
        | "pentagon"
        | "hexagon"
        | "septagon"
        | "octagon"
        | "doublecircle"
        | "doubleoctagon"
        | "tripleoctagon"
        | "Mdiamond"
        | "Msquare"
        | "Mcircle"
        | "square"
        | "star"
        | "note"
        | "tab"
        | "folder"
        | "box3d"
        | "component"
        | "cylinder"
        | "rectangle"

    Graphviz shape name used for issue nodes.

    nodeMargin?: string

    Per-node text padding inside boxes, as "x" or "x,y". Graphviz default "0.11,0.055".

    nodesep?: number

    Gap between nodes in the same rank, in inches. Graphviz default 0.25.

    packmode?: "off" | "node" | "clust" | "graph" | "array"

    2D-component packing mode. Omit to leave Graphviz's default in place; set to 'off' to explicitly disable; any other value emits pack=true and the chosen packmode. See Packmode in to-dot.ts.

    prShape?:
        | "box"
        | "polygon"
        | "ellipse"
        | "oval"
        | "circle"
        | "egg"
        | "triangle"
        | "diamond"
        | "trapezium"
        | "parallelogram"
        | "house"
        | "pentagon"
        | "hexagon"
        | "septagon"
        | "octagon"
        | "doublecircle"
        | "doubleoctagon"
        | "tripleoctagon"
        | "Mdiamond"
        | "Msquare"
        | "Mcircle"
        | "square"
        | "star"
        | "note"
        | "tab"
        | "folder"
        | "box3d"
        | "component"
        | "cylinder"
        | "rectangle"

    Graphviz shape name used for pull-request nodes.

    rankdir?: RankDir

    Graph rank direction; defaults to 'lr' (left-to-right).

    ranksep?: number

    Gap between ranks, in inches. Graphviz default 0.5.

    splines?: Splines

    Edge routing style; undefined leaves the DOT default (curved) in place.