在mxGraph

时间:2017-12-29 10:36:00

标签: mxgraph

给出javascript Hello World示例(mxgraph/javascript/examples/helloworld.html): 如果单击并拖动边缘,它将移动,使其不再连接到顶点。我想修改helloworld.html,以便边缘不能与顶点分离。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:0)

将以下代码放在try-finally块之前:

graph.setAllowDanglingEdges(false);
graph.setDisconnectOnMove(false);

documentation中解释了这一点。