节点和边相互重叠

Nodes and edges overlap each other

我正在尝试在 Gephi 中可视化图形(使用 JanusGraph),但所有节点和边在 "Preview" 选项卡中相互重叠。

  1. 我正在使用 Gremlin 连接到数据库并创建具有一条边的两个顶点:

    gremlin> graph = JanusGraphFactory.build().set("storage.backend", "cassandra").set("storage.hostname", "127.0.0.1").open(); 
    ==>standardjanusgraph[cassandra:[127.0.0.1]]
    gremlin> v1 = graph.addVertex('human');
    ==>v[122896568]
    gremlin> v2 = graph.addVertex('robot');
    ==>v[40976424]
    gremlin> battle = v1.addEdge('battled', v2, 'time', 22);
    ==>e[215vyv-2163lk-8ufp-oe9m0][122896568-battled->40976424]
    
  2. 我正在使用图形流插件连接到 Gephi 并提交图形:

    gremlin> :plugin use tinkerpop.gephi
    ==>tinkerpop.gephi activated
    gremlin> :remote connect tinkerpop.gephi
    ==>Connection to Gephi - http://localhost:8080/workspace1 with stepDelay:1000, startRGBColor:[0.0, 1.0, 0.5], colorToFade:g, colorFadeRate:0.7, startSize:10.0,sizeDecrementRate:0.33
    gremlin> :> graph
    
  3. 在 Gephi 中,我在 "Data Laboratory" 选项卡中看到正确的数据,但这是 "Preview" 选项卡的结果:

我正在使用:

Gephi v 0.9.2
Graph Streaming Plugin v 1.0.3
JanusGraph v 0.2.0
Gremlin v 3.2.6

使用 Titan 结果是正确的。可以做些什么来解决 JanusGraph 的问题?

… all nodes and edges overlap each other in the "Preview" tab.

应用布局算法:

Overview > Layout > [layout-algorithm's_name] > Run