我正在使用d3.js v5.4.0
.
这是我得到的错误:Uncaught Error: unknown type: dragend
。
这是因为我正在尝试执行以下操作:
d3.drag()
.subject(function(d){
return {x: d.x, y: d.y};
})
.on("drag", function(args){
thisGraph.state.justDragged = true;
thisGraph.dragmove.call(thisGraph, args);
})
.on("dragend", function() {
// todo check if edge-mode is selected
});
dragend
现在似乎已被弃用。
我试图在此处找到将在较新版本中描述此替代方案的发行说明,但无法做到这一点。
请帮我解决这个问题。