I am using force directed graph to show topology data on graphical view. I have written below code:
var force = d3.layout.force()
.charge(-120)
.alpha(0)
.linkDistance(65)
.gravity(0.03)
.size([width, height]);
force
.nodes(data.nodes)
.links(data.links)
.start();
When i execute the code graph initialize with some movement which i need to stop. I want a graph display on static position without any movement and all links size should be same on graph initialization. if i will drag then it suppose to move. Any help would be much appreciated....!
Here is an example of static force-directed layout initialization.
This doesn't prevent you from setting draggable nodes the usual way:
You can help the links get the settle down to the size you want by controlling the linkStrength