2

I'm starting with Neo4J and I've done installing it from my computer. But I would like to show in my application the same graphical interface that it uses the "Server Browser".

It is a plugin? How to implement the same layout?

I'm already executed the movie example and already conected in the database with an tutorial with asp.net Mvc4 internet-based.

Thanks.

Jhonathan
  • 330
  • 1
  • 2
  • 14

2 Answers2

3

I wrote a example here: http://jexp.github.io/cy2neo and you can read more http://neo4j.com/developer/guide-data-visualization/

Also graphgists use a library that is similar to the one used in neo4j browser.

Michael Hunger
  • 41,339
  • 3
  • 57
  • 80
2

The neo4j Browser implementation is available as open source.

cybersam
  • 63,203
  • 6
  • 53
  • 76
  • The Neo4j browser is an angular app in coffeescript that uses d3 for visualization. – Michael Hunger Sep 23 '15 at 21:53
  • Hi, thanks, but I need implement this in Asp.NET. Node.js is not a option. – Jhonathan Sep 23 '15 at 22:31
  • You don't need to use Node.js, the bit you'll most interested in is the D3 side of things, there are bucket loads of examples of using D3 on MVC, just have a perusal through your search engine of choice and you'll get there! – Charlotte Skardon Sep 24 '15 at 08:10