我知道方法moveCells,但我想将单元格移到新的绝对位置(而不是相对增量)。我尝试克隆和更新geometry,但未成功:
var geo = graph.getCellGeometry(cell).clone();
geo.x = 10;
model.setGeometry(cell, geo);
我想念什么?
答案 0 :(得分:0)
更新几何图形后,您还需要刷新图形。
var geo = graph.getCellGeometry(cell).clone();
geo.x = 10;
model.setGeometry(cell, geo);
graph.refresh(); // update the graph