我从http://localhost:8000/examples/获得了一个示例代码。并开始建立自己的。我面临的问题是我有来自neo4j图形DB的JSON节点。我想补充一下。我成功地添加了它,但是与noe4j_labels相关联的Icon和Color没有在图中表示。
正在使用Sigma Design Plugin
var graphStyles = {
nodes: {
icon: {
by: 'neo4j_labels',
scheme: 'nodeIconScheme',
},
color: {
by: 'neo4j_labels',
scheme: 'nodeColorScheme',
},
}
}
// Instanciate the design:
var design = sigma.plugins.design(s, {
styles: graphStyles,
palette: graphPalettes
});
从第一个查询添加的节点使用各自的图标和颜色正确表示。
sigma.neo4j.cypher(
{ url: 'http://localhost:7474', user: 'neo4j', password: 'neo' },
query_init,
s,
function(s) {
但是当我尝试添加新节点时,我遇到了这个问题。
s.graph.addNode(new_graph_vars[0]);
new_graph_vars已获得各种节点的JSON
对象
0
:
Object
color
:
"#ff0000"
fa2_x
:
6.330295085906982
fa2_y
:
6.543041706085205
id
:
"148655"
label
:
"Desaru Investments (Cayman Isl.) Limited"
neo4j_data
:
Object
neo4j_labels
:
Object
read_cam0:size
:
1
read_cam0:x
:
6.330295085906982
read_cam0:y
:
6.543041706085205
renderer1:size
:
6.5694811875994725
renderer1:x
:
718.2437463015784
renderer1:y
:
651.9931886710822
size
:
1
x
:
6.330295085906982
y
:
6.543041706085205
__proto__
:
Object
length
:
9
__proto__
:
Array[0]