I will get Neo4j JSON data from AJAX call and I need to render the data. Is there any JS library where I can use the data as input and it will generate SVG output?
Asked
Active
Viewed 130 times
0
-
Have you looked at http://stackoverflow.com/questions/21893401/interactive-and-dynamic-graph-visualization/21907330#21907330 ? – MarcoL Aug 26 '14 at 11:53
1 Answers
2
Yes, there are several. D3.js is a very commonly used framework for this purpose, and so is Vis.js. A third option is Sigma.js. There are probably a dozen more, if you look.
All of them will have one common issue: they won't take JSON in the format delivered by the Neo4J RESTful services, so you'll have to write your own glue code to transform the data from Neo4J's format into whatever format the library you're using requires.

FrobberOfBits
- 17,634
- 4
- 52
- 86
-
-
have a look at their gallery of display types on the website. How to change the style depends in part on the display type (force directed, chord, etc) – FrobberOfBits Aug 29 '14 at 12:42