mxGraph - 拖动时禁用顶点选择

mxGraph - disable vertex selection when dragging

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

看起来像下面的作品

    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]);
    };