Reputation: 3179
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 :
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
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