Class NeoVis

Hierarchy

  • NeoVis

Constructors

Properties

NEOVIS_ADVANCED_CONFIG: symbol = NEOVIS_ADVANCED_CONFIG
NEOVIS_DEFAULT_CONFIG: symbol = NEOVIS_DEFAULT_CONFIG
objectToTitleHtml: ((neo4jObject, titleProperties) => HTMLDivElement) = objectToTitleHtml

Type declaration

    • (neo4jObject, titleProperties): HTMLDivElement
    • create html display of the node

      Parameters

      • neo4jObject: Node<NumberOrInteger, Properties> | Relationship<NumberOrInteger, Properties>

        node to create html from

      • titleProperties: string[]

        which properties to map

      Returns HTMLDivElement

objectToTitleString: ((neo4jObject, titleProperties) => string) = objectToTitleString

Type declaration

    • (neo4jObject, titleProperties): string
    • create string display of the node

      Parameters

      • neo4jObject: Node<NumberOrInteger, Properties> | Relationship<NumberOrInteger, Properties>

        node to create title string from

      • titleProperties: string[]

        which properties to map

      Returns string

Accessors

Methods

  • Clear the data for the visualization

    Returns void

  • Clear the network and fetch live data form the server and reload the visualization

    Parameters

    • Optional parameter: unknown

    Returns void

  • Renders the network

    Parameters

    • Optional query_or_function: string | DataFunctionType
    • Optional parameters: unknown

    Returns void

  • Execute an arbitrary Cypher query and re-render the visualization

    Parameters

    • query: string
    • Optional parameters: unknown

      parameters to send to the cypher

    Returns void

  • Execute an arbitrary function and re-render the visualization

    Parameters

    • func: DataFunctionType
    • Optional parameters: unknown

      parameters to send to the function

    Returns void

  • Stabilize the visualization

    Returns void

  • Execute an arbitrary Cypher query and update the current visualization, retaning current nodes This function will not change the original query given by renderWithCypher or the inital cypher.

    Parameters

    • query: string
    • Optional parameters: unknown

      parameters to send to the cypher

    Returns void

  • Execute an arbitrary function and update the visualization

    Parameters

    • func: DataFunctionType
    • Optional parameters: unknown

      parameters to send to the function

    Returns void

Generated using TypeDoc