Editing or creating graphical style sheets for WebAdmin

I updated neo4j 2.0 and am currently trying desperately to edit web admin style sheets for my graph. The old version had a convenient style editor, which I can not find in the new one.

A message will appear that probably explains how to edit the stylesheet: "Drop Cypher script file to importDownload the trace file here for import." However, I do not understand the message.

Does anyone know any tutorial on editing graphic style sheets for neo4j 2.0?

Thanks in advance,

Iwanai

0
source share
2 answers

In Neo4j 2.0.0, you cannot edit the stylesheet. Instead, you need to load the stylesheet, using the download symbol, directly into the โ€œGraph Style Sheetโ€ caption text. Edit the downloaded file locally using your favorite editor and drag it to the specified selection area.

+1
source

Once you download the stylesheet, itโ€™s pretty easy to open a text file in an editor. You just need to search for color codes according to your preference. eg:

node { diameter: 40px; #you can change this value to your size preference for diameter of the node color: #DFE1E3; #this is the value that you need to google. border-color: #D4D6D7; # same as above border-width: 2px; #width of node border text-color-internal: #000000; #pretty obvious caption: '{Date}'; font-size: 14px; #also obvious } relationship { color: #D4D6D7; shaft-width: 1px; font-size: 4px; padding: 3px; text-color-external: #000000; text-color-internal: #FFFFFF; } 

Here is a good link for HTML color values

0
source

All Articles