ts-graphviz
    Preparing search index...

    Interface OtherOptions

    This interface describes an optional parameter called "layout" which is used to set a layout engine. The default value for this parameter is 'dot', and it must be an option of the Layout type, excluding 'neato' and 'fdp'.

    interface OtherOptions {
        layout?:
            | "dot"
            | "sfdp"
            | "circo"
            | "twopi"
            | "nop"
            | "nop2"
            | "osage"
            | "patchwork";
    }
    Index

    Properties

    Properties

    layout?:
        | "dot"
        | "sfdp"
        | "circo"
        | "twopi"
        | "nop"
        | "nop2"
        | "osage"
        | "patchwork"

    Set layout engine.

    'dot'