philippe
philippe

Reputation: 3179

neo4j how to display links characteristics between nodes

I would like to represent computer networks and their connectivity between them. With neo4j server located at http://localhost:7474 I can represent them like this :enter image description here

However, I would like to let user see connectivity between nodes. When selecting two servers (purple nodes), it would render the paths between them and pop (as tooltip for instance) firewalling rules implemented on routers (green nodes).

Is it possible to do it with neo4j browser ? Or should I go for another representation library ?

Many thanks!

Upvotes: 0

Views: 50

Answers (1)

bechbd
bechbd

Reputation: 6341

If you are looking to provide this functionality as part of an application I would look at using a 3rd party library to handle the display. A few that I have successfully used in the past to accomplish this sort of thing are:

Keylines (commercial)

Linkurious (commercial)

Y-Files (commercial)

Sigma JS (MIT License)

D3 (BSD)

VisJS (MIT-Apache2.0)

Upvotes: 1

Related Questions