我正在使用力导向图的例子。
krispo /角nvd3 /斑点/ GH-页/ JS / forceDirectedGraph.js
如何修改此代码,以便我可以为每个链接添加箭头以指示方向?
$scope.options = {
chart: {
type: 'forceDirectedGraph',
height: 450,
width: (function(){ return nv.utils.windowSize().width })(),
margin:{top: 20, right: 20, bottom: 20, left: 20},
color: function(d){
return color(d.group)
},
nodeExtras: function(node) {
node && node
.append("text")
.attr("dx", 8)
.attr("dy", ".35em")
.text(function(d) { return d.name })
.style('font-size', '10px');
}
}
};
这样输出看起来更像是这样:
http://bl.ocks.org/tomgp/d59de83f771ca2b6f1d4
将标记作为箭头附加到FDG。
defs.append("marker")
.attr({
"id":"arrow",
"viewBox":"0 -5 10 10",
"refX":5,
"refY":0,
"markerWidth":4,
"markerHeight":4,
"orient":"auto"
})
.append("path")
.attr("d", "M0,-5L10,0L0,5")
.attr("class","arrowHead");
这是我的plunker示例
答案 0 :(得分:0)
看起来这是Angular-nvd3的一个问题。希望它会得到解决。 https://github.com/krispo/angular-nvd3/issues/677