Using visualization tools similar to neo4j web interface in my own nodejs application

I am developing a simple web application to visualize the relationship between different terms. neo4j is a great database management tool, but I need some tools to help me visualize relationships for users.
I looked at popular options like sigmajs and three.js. However, they do not show the types of relationships very well.
I realized that the web interface provided by neo4j itself is a good visualization tool, except for the small font size. But I don’t know how to use it in my application (it looks like it uses SVG, which is suitable for me).
Any good suggestions on good relationship visualization tools or ways to “capture” the neo4j web interface for my own project?

+4
source share
1 answer

I believe that your person is Max de Marzi , he is working on visualization of neo4j data. In his tutorials, he used vivagraph.js , d3.js , processing.js , sigma.js ...

Check out his website http://maxdemarzi.com/ and his github https://github.com/maxdemarzi .

You can also take a look at the issue of Big Data Visualization using the “Search, Display Context, and On-Demand Expansion” concept .

+3
source

Source: https://habr.com/ru/post/1546317/


All Articles