On the localhost page launched to use Neo4j, it is easy to color specific nodes in a different way. Following the movie example included in Neo4j; persons in red, movies in purple and with a click of the button change one to orange.
As an expansion on this, I would like to color nodes of the same type, but with a different property in a different way. Following the example; add gender as a property to each person node, followed by coloring men blue and women red.
Is it possible to realize this in the current build? I am working with Neo4j Community 2.1.7.
Edit: There was a request for an piece of the .grass file responsible for the visualization. Here is a small excerpt responsible for coloring a type of node.
node.Page {
color: #30B6AF;
border-color: #46A39E;
text-color-internal: #FFFFFF;
diameter: 80px;
border-width: 2px;
caption: '{pagename}';
font-size: 10px;}