3

I have a sample graph, where it has two types of nodes, servers and services.
Server and properties looks like:

Server:{
"ip":"0.0.1.1"},
"location":"india",
"uptime":"120",
"services":["httpd","IPsec","irqbalance"],
}

Where the services is:

service:{
"service":"httpd"}

My connected graph looks like,enter image description here

Servers are easily identified with the ip, but the services are not. I want to display service property on node. How to do that?

Jack Daniel
  • 2,527
  • 3
  • 31
  • 52

1 Answers1

11

You have to click on the label (display above the graph) and then choose the property below the graph.

enter image description here

Neo4j website has a good explanation for this with screenshots: http://neo4j.com/developer/guide-neo4j-browser/#_styling_neo4j_browser_visualization

d4nyll
  • 11,811
  • 6
  • 54
  • 68
Stefan Armbruster
  • 39,465
  • 6
  • 87
  • 97