给出javascript Hello World示例(mxgraph/javascript/examples/helloworld.html
):
如果单击并拖动边缘,它将移动,使其不再连接到顶点。我想修改helloworld.html
,以便边缘不能与顶点分离。我怎样才能做到这一点?
答案 0 :(得分:0)
将以下代码放在try-finally块之前:
graph.setAllowDanglingEdges(false);
graph.setDisconnectOnMove(false);
documentation中解释了这一点。