mxGraph - 拖动时禁用顶点选择

时间:2017-04-05 08:06:01

标签: javascript graph editor mxgraph

我正在使用JS mxGraph,并希望在拖动时禁用顶点的自动选择。只有在用户点击它而不移动顶点时才应选择顶点。 感谢

1 个答案:

答案 0 :(得分:0)

看起来如下工作

    mxGraphHandler.prototype.isDelayedSelection = function(cell, me) {
        return true;
    };

    mxGraphHandler.prototype.getCells = function(initialCell) {
        if (this.graph.getSelectionCells().includes(initialCell)) {
            return this.graph.getMovableCells(this.graph.getSelectionCells());
        }
        return this.graph.getMovableCells([initialCell]);
    };