我有一个d3js树形图,并希望更改用户展开树时发生的事件。我希望用户通过单击圆圈来展开树,但在用户单击文本时创建一个onclick。我将每个节点的状态更新为Session,然后用于创建json数据。
我的json数据中有两个元素'Expanded'和'Selected',我用它来显示图表的状态,显示哪些节点已被展开,并更改文本样式以显示已选择的内容。
我希望能够在用户点击文本链接而不是圆圈时更改文本样式,以便更新实时图表而无需从保存的数据中回发。此onclick还会将节点的“已选定”状态发送给我保存在会话中。
function update(source) {
var duration = d3.event && d3.event.altKey ? 5000 : 500;
// Compute the new tree layout.
var nodes = tree.nodes(root).reverse();
// Normalize for fixed-depth.
nodes.forEach(function (d) { d.y = d.depth * 180; });
// Update the nodes…
var node = vis.selectAll("g.node")
.data(nodes, function (d) { return d.id || (d.id = ++i); });
// Enter any new nodes at the parent's previous position.
var nodeEnter = node.enter().append("svg:g")
.attr("class", "node")
.attr("transform", function (d) { return "translate(" + source.y0 + "," + source.x0 + ")"; })
// Node On Click Event to update selected record to list
.on("click", function (d) {
toggle(d); update(d);
// Try and add Selected node to Company Select Matrix Model Binder
AddRemoveContexttoModelBinder(d);
});
nodeEnter.append("svg:circle")
.attr("r", 1e-6)
.style("fill", function (d) { return d._children ? "lightsteelblue" : "#fff"; })
.style("fill", function (d) { return d.free ? "red" : "black"});
nodeEnter.append("a")
.attr("xlink:href", function(d) {
return d.url;
})
.append("svg:text")
.attr("x", function(d) { return d.children || d._children ? -10 : 10; })
.attr("dy", ".35em")
.attr("text-anchor", function(d) { return d.children || d._children ? "end" : "start"; })
.text(function(d) { return d.name; })
// .style('fill', function (d) {
// return d.free ? 'black' : '#999';
// })
.style('fill', function(d) {
return d.nonselectable ? 'red' : '#999';
})
.style("fill-opacity", 1e-6);
nodeEnter.append("svg:title")
.text(function (d) {
return d.description;
// Append details to each node if they have been selected});
// Transition nodes to their new position.
var nodeUpdate = node.transition()
.duration(duration)
.attr("transform", function (d) { return "translate(" + d.y + "," + d.x + ")"; });
nodeUpdate.select("circle")
.attr("r", 4.5)
.style("fill", function (d) { return d._children ? "lightsteelblue" : "#fff"; })
.style("fill", function (d) { return d.selected ? "green" : "yellow"});
nodeUpdate.select("text")
.style("fill-opacity", 1)
.style("fill", function(d) {
if (d.nonselectable) {
return "red";
} else {
return d.selected ? "green" : "black";
}
})
.style("fill-opacity", function (d) { return d.nonselectable ? .5 : 1 });
// Transition exiting nodes to the parent's new position.
var nodeExit = node.exit().transition()
.duration(duration)
.attr("transform", function (d) { return "translate(" + source.y + "," + source.x + ")"; })
.remove();
nodeExit.select("circle")
.attr("r", 1e-6);
nodeExit.select("text")
.style("fill-opacity", 1e-6);
// Update the links…
var link = vis.selectAll("path.link")
.data(tree.links(nodes), function (d) { return d.target.id; });
// Enter any new links at the parent's previous position.
link.enter().insert("svg:path", "g")
.attr("class", "link")
.attr("d", function (d) {
var o = { x: source.x0, y: source.y0 };
return diagonal({ source: o, target: o });
})
.transition()
.duration(duration)
.attr("d", diagonal);
// Transition links to their new position.
link.transition()
.duration(duration)
.attr("d", diagonal);
// Transition exiting nodes to the parent's new position.
link.exit().transition()
.duration(duration)
.attr("d", function (d) {
var o = { x: source.x, y: source.y };
return diagonal({ source: o, target: o });
})
.remove();
// Stash the old positions for transition.
nodes.forEach(function (d) {
d.x0 = d.x;
d.y0 = d.y;
});
}
更新: 我创建了一个带有一些测试用例数据的jsfiddle页面http://jsfiddle.net/mrchrispaton/aut40rk2/10