0

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.

geophf
  • 41
  • 5

1 Answers1

0

The neo4j browser does not support setting colors from node/relationship properties.

Aside from the neo4j browser, there are a number of other visualization tools for neo4j. Perfhaps one of them will work better for you.

cybersam
  • 63,203
  • 6
  • 53
  • 76