Sigma js

<![endif] sigma js get started features use cases tutorial references js tutorial v1.0.3 download Sigma is a JavaScript library dedicated to graph drawing . It makes easy to publish networks on Web pages, and allows developers to integrate network exploration in rich Web applications. The following example shows how simple it is to use sigma to display a JSON encoded graph file. Data { "nodes": [ { "id": "n0", "label": "A node", "x": 0, "y": 0, "size": 3 }, { "id": "n1", "label": "Another node", "x": 3, "y": 1, "size": 2 }, { "id": "n2", "label": "And a last one", "x": 1, "y": 3, "size": 1 } ], "edges": [ { "id": "e0", "source": "n0", "target": "n1" }, { "id": "e1", "source":...

Linked on 2014-09-24 18:03:59 | Similar Links