1
0
Fork 0

GraphViewer: Enlarged the Arrow Pointer, has to be changed to be relative to nodesize

This commit is contained in:
Michael Hackstein 2013-04-04 01:04:58 +02:00
parent 159c55be39
commit 2affe643d3
1 changed files with 3 additions and 3 deletions

View File

@ -183,11 +183,11 @@ function EdgeShaper(parent, flags, idfunc) {
.select("defs")
.append("marker")
.attr("id", "arrow")
.attr("viewBox", "0 0 10 10")
.attr("refX", "0")
.attr("refX", "22")
.attr("refY", "5")
.attr("markerUnits", "strokeWidth")
.attr("markerHeight", "3")
.attr("markerHeight", "10")
.attr("markerWidth", "10")
.attr("orient", "auto")
.append("path")
.attr("d", "M 0 0 L 10 5 L 0 10 z");