我正尝试在强制定向报告中添加从源到目标的箭头,其示例可在此处获得:http://plnkr.co/edit/Q69DkEH5Z9aOe92UwlOB?p=preview
我试图添加箭头在链接从源到目标在上面的图在中间的链接。就像这样:
节点1-----〉-----节点2-------〈------节点3
但我不确定我怎么能做到这一点。
我在这里看到了一个例子:https://stackoverflow.com/a/28050566/8052709并尝试在我的plunkr中添加以下内容:
// build the arrow.
vis.append("svg:defs").selectAll("marker")
.data(["end"]) // Different link/path types can be defined here
.enter().append("svg:marker") // This section adds in the arrows
.attr("id", String)
.attr("viewBox", "0 -5 10 10")
.attr("refX", 15)
.attr("refY", -1.5)
.attr("markerWidth", 6)
.attr("markerHeight", 6)
.attr("orient", "auto")
.append("svg:path")
.attr("d", "M0,-5L10,0L0,5");
但它失败了。我不太精通使用JS绘制图表,所以不确定我做错了什么。
谁能帮帮我。
1条答案
按热度按时间b5buobof1#
下面是一个小demo:
制作人:https://stackoverflow.com/a/15758791/18667225