在 d3 演示(http://goo.gl/lN7Jo)之后,我正在尝试创建一个力导向图。我正在尝试向通过这样做创建的节点元素添加标题属性。
var node = svg.selectAll("circle.node")
.data(json.nodes)
.enter().append("circle")
.attr("class", "node")
// here is how I try to add a title.
.attr("title", "my title")
.attr("r", 5)
.style("fill", function(d) { return color(d.group); })
.call(force.drag);
但是,我的图表的节点没有显示标题属性。这样做的正确方法是什么?谢谢你。