我想使用Mobile Patent Suits为两个节点之间的连接添加名称/文本
is used by
i.e Oracle ----------> Google
节点在这里创建:
links.forEach(function(link) {
link.source = nodes[link.source] || (nodes[link.source] = {name: link.source});
link.target = nodes[link.target] || (nodes[link.target] = {name: link.target});
});
但是查看创建图形的代码,没有可以插入类似
node.append("title")
.text("my text");
(并且还添加它不起作用)。任何的想法?