這是代碼。
親切的問候, 馬庫斯
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var width = 960,
height = 500;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var force = d3.layout.force()
.gravity(0.05)
.distance(100)
.charge(-100)
.size([width, height]);
d3.json("graph.json", function(error, json) {
if (error) throw error;
force
.nodes(json.nodes)
.links(json.links)
.start();
var link = svg.selectAll(".link")
.data(json.links)
.enter().append("line")
.attr("class", "link");
var node = svg.selectAll(".node")
.data(json.nodes)
.enter().append("g")
.attr("class", "node")
.call(force.drag);
node.append("image")
.attr("xlink:href", "https://github.com/favicon.ico")
.attr("x", -8)
.attr("y", -8)
.attr("width", 16)
.attr("height", 16);
node.append("text")
.attr("dx", 12)
.attr("dy", ".35em")
.text(function(d) { return d.name });
svg.on("dblclick", function(d) {
var selectedNodes = ["Brujon", "Gervais", "Javert"];
node.each(function(d){
if(selectedNodes.indexOf(d.name) > -1){
d.fixed = true
console.log(d)
}
force
.nodes(json.nodes)
.links(json.links)
.start();
createLayout(force, link, node);
})
});
createLayout(force, link, node);
});
function createLayout(force, link, node) {
force.on("tick", function() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; });
});
};
你好赫拉爾:本d3.select線是先前嘗試的遺蹟。我很抱歉。我創建了一個createLayout函數並添加了一個雙擊事件,因此graphlayout是第二次用凍結節點執行的,第一次沒有凍結債券。 – Markus