I've downloaded the graphstyle.grass and added the following property to the pre-existing label:
node.CELL {
color: '{color}';
border-color: #60B58B;
text-color-internal: #FFFFFF;
caption: '{idx}';
}
(The color
property used to be #6DCE9E
)
But now, after uploading that new GraSS file to the neo4j browser, all CELL
-nodes are black. When I examine the GraSS file on the browser, it is now:
node.CELL {
color: {color};
border-color: #60B58B;
text-color-internal: #FFFFFF;
caption: '{idx}';
}
1) Why did neo4j remove my quotes around the {color}
-reference?
2) How can I write the GraSS file so that neo4j recognizes that the color is derived from the color
-property of the CELL
nodes?
Thank you.