我从http://localhost:8000/examples/获得了一个示例代码。并开始建立我自己的。我面临的问题是我有来自 neo4j 图形数据库的节点 JSON。我想补充的。我成功添加了它,但与 noe4j_labels 关联的图标和颜色未在图中表示。
正在使用 Sigma 设计插件
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]