pivotick - v0.0.1
    Preparing search index...

    Interface GraphOptions

    This interface should be used as the entry point when configuring the graph.

    interface GraphOptions {
        callbacks?: InterractionCallbacks.InterractionCallbacks<unknown>;
        isDirected?: boolean;
        layout?: Partial<LayoutOptions.LayoutOptions>;
        render?: Partial<GraphRendererOptions>;
        simulation?: Partial<SimulationOptions.SimulationOptions>;
        UI?: Partial<GraphUI.GraphUI>;
    }
    Index

    Properties

    Callbacks to handle various graph events and render hooks.

    isDirected?: boolean

    Enable whether the graph is directed or not

    true
    
    layout?: Partial<LayoutOptions.LayoutOptions>

    Layout-specific configuration (e.g. tree, radial, etc.)

    render?: Partial<GraphRendererOptions>

    Options for the rendering engine

    simulation?: Partial<SimulationOptions.SimulationOptions>

    Options for the simultion engine

    UI?: Partial<GraphUI.GraphUI>

    Options for the UI