.gexf -format节点图可视化

时间:2012-05-30 19:41:48

标签: javascript sigma.js

要显示节点图Sigma.js看起来很棒。我尝试了一些例子,但无法显示我的图表。我使用了示例代码并尝试插入我的.gexf文件,但没有显示任何内容。这是我从Sigma.js example获取的内容:

function init() {
  // Instanciate sigma.js and customize rendering :
  var sigInst = sigma.init(document.getElementById('sigma-example')).drawingProperties({
    defaultLabelColor: '#fff',
    defaultLabelSize: 14,
    defaultLabelBGColor: '#fff',
    defaultLabelHoverColor: '#000',
    labelThreshold: 6,
    defaultEdgeType: 'curve'
  }).graphProperties({
    minNodeSize: 0.5,
    maxNodeSize: 5,
    minEdgeSize: 1,
    maxEdgeSize: 1
  }).mouseProperties({
    maxRatio: 32
  });

  // Parse a GEXF encoded file to fill the graph
  // (requires "sigma.parseGexf.js" to be included)
  sigInst.parseGexf('donornet.gexf');

  // Draw the graph :
  sigInst.draw();
}

if (document.addEventListener) {
  document.addEventListener("DOMContentLoaded", init, false);
} else {
  window.onload = init;
}

我用自己的donornet.gexf文件替换了.gexf文件,并将其保存为donornet.js。然后我使用了来自example(来自Max De Marzi)的代码,我将其替换为我的donornet.js文件:

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>Donornet and Sigma.js Example</title>
    <script type="text/javascript" src="sigma.min.js"></script>
    <script type="text/javascript" src="sigma.parseGexf.js"></script>
    <script type="text/javascript" src="sigma.forceatlas2.js"></script>
    <link type="text/css" rel="stylesheet" href="neo_sigma.css"/>
  </head>
  <body>
    <h1>Donornet and Sigma.js Example</h1>
        <div class="buttons-container">
        <button class="btn" id="stop-layout">Stop Layout</button>
        <button class="btn" id="rescale-graph">Rescale Graph</button>
    </div>
        <div class="span12 sigma-parent" id="sigma-example-parent">
    <div class="sigma-expand" id="sigma-example"></div>
    </div>
    <script type="text/javascript" src="donornet.js"></script>
  </body>
</html>

所有文件都在同一个文件夹中。 parseGexf.js与donornet.js和donornet.gexf位于同一文件夹中。

1 个答案:

答案 0 :(得分:2)

您不必将.gexf文件另存为.js文件。只需将其保留为gexf文件并将其上载到脚本的文件夹中即可。删除<script src="donornet.js">行。尝试再次运行。如果它不起作用,也删除按钮div。查看http://noduslabs.com/socialplayer/smmrussia/

上的来源