I am looking for a library to visualize the network.
I just need to add some nodes (node ββhas text on them), add edges between them, (edges are directed and have text on them). I do not want the position of the position to be manual.
I would like the API to simply:
var node1 = X.addNode(1, "Hello"), node2 = X.addNode(2, "World"); X.addEdge(node1, node2, "helloworld");
I searched for watches, looked after arborjs, sigma.js, d3.js, JavaScript InfoVis Toolkit, none of them satisfied me.
Is there anything else I can try?
wong2 source share