Sigma图表不显示,但没有错误消息

时间:2015-07-13 18:26:01

标签: sigma.js

我正在尝试使用POC http://sigmajs.org/ 关于生成的gexf数据 https://github.com/splitbrain/dokuwiki-grapher/

尝试在这里,没有显示任何内容: http://galerie.microalg.info/profgra.html

有人请吗?

1 个答案:

答案 0 :(得分:1)

那是因为节点没有大小或位置 您可以在节点上循环并为它们提供所需的内容,如下所示:

sigma.parsers.gexf(
  'profgra.gexf',
  { container: 'graph-container' },
  // This will be executed after graph loading:
  function(sigmaInstance) {
    sigmaInstance.graph.nodes().forEach(function(node, i, a) {
      // On a circle:
      node.x = Math.cos(Math.PI * 2 * i / a.length);
      node.y = Math.sin(Math.PI * 2 * i / a.length);
      // Default size:
      node.size = 1;
    });
    sigmaInstance.refresh();
  }
);