如何防止用户移动Joint.js中的顶点和边

时间:2018-08-03 16:14:31

标签: javascript jointjs

joint.js 0.9.5

我正在从JSON文件中加载图形

R*

我可以通过以下方式阻止与图的所有交互

$.getJSON("json/representation_of_story_example_graph.json", function(response){
    app.graph.fromJSON(response);
    app.paperScroller.zoomToFit({
        padding: 20,
        scaleGrid: 0.2,
        minScale: 0.2,
        maxScale: 1
    });
});

但是我需要允许单击顶点和边缘。如何防止用户拖动顶点或边缘并允许鼠标​​单击?

0 个答案:

没有答案