'Why does adding new properties to the graph style sheet not work in Neo4j?
The Developer guide for Neo4j Browser User Interface says that I can run :style
, export it, modify it and drag it back to change the style. I try changing the default border width, and adding two new properties for nodes: text-align
and shape
, as explained in Graph Stylesheets:
node {
diameter: 50px;
color: #A5ABB6;
border-color: #9AA1AC;
border-width: 10px;
text-color-internal: #FFFFFF;
font-size: 10px;
text-align: "below";
shape: regtangle;
}
But only the border width changes. Why does the rest not work?
Solution 1:[1]
text-align
and shape
don't seem to be properties supported by the Neo4j browser.
The styling guide in the browser manual lists eight properties.
And based on this list, only the colour of the text seems to be customisable.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 |