I am developing a simple web app to help visualize the relationship between different terms.
neo4j is a great tool for managing the database but I need some tools to help me visualize the relationships for the users.
I looked at popular choices like sigmajs and three.js. However, they are not good at showing the types of relationships.
I realized that the web interface provided by neo4j itself is a good tool for visualization except for the small font size. But I don't know any way to use it in my own app(looks like it uses SVG which is okay for me).
Any good suggestions on good tools for visualizing the relationships or ways to "grab" the neo4j web interface for my own project?
Asked
Active
Viewed 1,547 times
4

paradite
- 6,238
- 3
- 40
- 58
-
just a note for other who might have missed it: http://www.neo4j.org/develop/visualize – ulkas Jun 27 '14 at 14:38
1 Answers
3
I believe your man is Max de Marzi, he's the one working on visualizing 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's https://github.com/maxdemarzi.
You could also have a look at the question Big data visualization using "search, show context, and expand on demand" concept.

Community
- 1
- 1

miro marchi
- 727
- 5
- 15
-
Hi, thanks a lot. I looked at his tutorials before but it looks like a lot of concepts with no technical details. For now I think the tree layout from d3.js best suits me. Any other good resources to get started on it except for the d3.js API? – paradite Jun 28 '14 at 10:57