我正在D3中制作力导向图。我想通过将所有其他节点和链接设置为较低的不透明度来突出显示mouseover'd节点,其链接及其子节点。
在本例中,http://jsfiddle.net/xReHA/,我能够淡出所有链接和节点,然后淡入连接的链接,但是到目前为止,我还不能优雅地淡入是当前鼠标悬停节点的子节点的已连接节点。
这是代码中的关键功能:
function fade(opacity) {
return function(d, i) {
//fade all elements
svg.selectAll("circle, line").style("opacity", opacity);
var associated_links = svg.selectAll("line").filter(function(d) {
return d.source.index == i || d.target.index == i;
}).each(function(dLink, iLink) {
//unfade links and nodes connected to the current node
d3.select(this).style("opacity", 1);
//THE FOLLOWING CAUSES: Uncaught TypeError: Cannot call method 'setProperty' of undefined
d3.select(dLink.source).style("opacity", 1);
d3.select(dLink.target).style("opacity", 1);
});
};
}
Uncaught TypeError: Cannot call method 'setProperty' of undefined
尝试在从source.target加载的元素上设置不透明度时出现错误。我怀疑这不是将该节点作为d3对象加载的正确方法,但是我无法找到另一种方法来加载它,而无需再次遍历所有节点以找到与链接的目标或源相匹配的节点。为了保持合理的性能,我不想对所有节点进行过多的迭代。
我以淡化http://mbostock.github.com/d3/ex/chord.html中的链接为例:
但是,这并未显示如何更改连接的子节点。
任何有关如何解决或改善此问题的好建议都会被强烈建议:)