pivotick - v0.0.1
    Preparing search index...

    Interface NeighborsPanel

    Represents the configuration for the neighbors panel in the graph UI's sidebar

    Defines how to compute and display neighbors for nodes and edges.

    All neighbor for the chosen entity
    
    interface NeighborsPanel {
        render?:
            | string
            | HTMLElement
            | (
                (
                    element: Node | Node[] | Edge | Edge[] | null,
                ) => string | HTMLElement
            );
    }
    Index

    Properties

    Properties

    render?:
        | string
        | HTMLElement
        | ((element: Node | Node[] | Edge | Edge[] | null) => string | HTMLElement)