Unfortunately it's not a RTFM issue (yet). But I could recommend that you could quickly grab an existing visualizaiton library like viz.js (see here): https://github.com/johnymontana/neovis.js
And implement a quick visualizer that keeps not positions. You can just store the nodes by id to position(x,y) which you can keep in the session (or even persist in browser storage) and only the nodes not previously placed would be re-layouted. If you're looking for huge graphs then perhaps vivagraph/ngraph, see here: https://neo4j.com/blog/neo4j-3-0-graph-universe/ or ogma see here: https://linkurio.us/ogma-js-library-large-scale-graph-visualization/ might be a solution. Hope that helps, and sorry, this is not (yet) out of the box Michael > Am 07.05.2017 um 21:11 schrieb Jeff Bradbury <[email protected]>: > > Thanks for the reply. > > I’m porting a database over to neo4j and setting relationships up on the fly. > My code prunes data, adjusts relationships, etc. to streamline the data and > improve performance. > > > > It’s noting overly complex, but there is a lot of back and forth as I make > code changes. The visual component of py2neo allows me to see where I’ve > gone wrong or where things are working as I would expect. > > > > There may be a better way to do this and my relative newness to neo4j is my > real problem, but right now I would happy give up the (cool looking) effects > for speed. > > > > The ability to create / save / load / apply a structure for how my data is > displayed would provide so much value. Right now, I run the query and have > to chase and move things around each time I go back into the interface. > Also, if it’s just an RTFM issue… all I need is a little direction. > > > Thanks! > > On Saturday, May 6, 2017 at 12:48:38 PM UTC-4, Jeff Bradbury wrote: > Hey Everyone / Anyone, > I've been using neo4j for a little while and I really like it. > > Unfortunately, now that my database is getting larger I'm running into > display issues. When I run a query that pulls up a few thousand nodes they > all swirl bounce and move around for minuets and then trying to move things > around sets them all off again... > > How are you dealing with this? Are their other options for graphically > displaying the data? Can the movement be turned off? Is there a way to > have them lode up in arranged in a specific way (this would be great)? > > Right now I run my query, wait for things to stop moving, arrange things, > wait, arrange things, etc. I have to go through this each time I look at my > database... and in the development stages its more often that I would like! > > > Any help would be GREATLY appreciated! > > > Thanks! > Jeff > > -- > You received this message because you are subscribed to the Google Groups > "Neo4j" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
