Jack Daniel
Jack Daniel

Reputation: 2611

Neo4j - How to display a property on a node, to identify easily in browser?

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?

Upvotes: 3

Views: 4715

Answers (1)

Stefan Armbruster
Stefan Armbruster

Reputation: 39925

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

Upvotes: 11

Related Questions