在这个例子中,如何使每个节点的文本成为可点击的链接?
我尝试了类似于此代码的内容,但这些值不可点击:
var links = text.append("a").attr("xlink:href", "http://www.google.com/");
// A copy of the text with a thick white stroke for legibility.
links.append("svg:text")
.attr("x", 8)
.attr("y", ".31em")
.attr("class", "shadow")
.text(function(d) { return d.name; });
links.append("svg:text")
.attr("x", 8)
.attr("y", ".31em")
.text(function(d) { return d.name; });
编辑/解决方案:原来css有这个属性:指针事件:无;我不得不删除它,然后按照以利亚的建议使用。