Reputation: 2611
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,
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
Reputation: 39925
You have to click on the label (display above the graph) and then choose the property below the graph.
Neo4j website has a good explanation for this with screenshots: http://neo4j.com/developer/guide-neo4j-browser/#_styling_neo4j_browser_visualization
Upvotes: 11