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
    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"

    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"
    rankdir?: RankDir
    ranksep?: number
    splines?: Splines