-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
:base: https://rawgit.com/jexp/neo4j-3d-force-graph/master | ||
|
||
Some experiments using Data in Neo4j to render 3d graphs using three-js via https://github.com/vasturiano/3d-force-graph[3d-force-graph] which is a really cool repository. | ||
|
||
These pages use the Neo4j javascript driver to query the graph for some basic data and render it in the 3d-graph. | ||
|
||
The pages load 5000 relationships from your graph at bolt://localhost, you might need to set auth (default is user: neo4j, password: test) | ||
|
||
* link:{base}/index.html[basic loading] just using the id's (fastest) link:index.html[index.html] | ||
* link:{base}/incremental.html[incremental loading] each row from the driver result is added to the graph incrementally link:incremental.html[incremental.html] | ||
* link:{base}/color.html[color by label and caption on hover] loads `{ id: id(n), label:head(labels(n)), caption:n.name }` per node link:color.html[color.html] | ||
image::labels-info.jpg[width=600] | ||
|