jointjs鼠标按下时重置一个单元格

时间:2016-07-26 09:26:08

标签: jointjs

我正在尝试在鼠标按下事件时重置一个单元格。例如,如果用户点击矩形,我想将其stroke-width设置为1

 paper.on('cell:pointerdown', function (cellView, evt, x, y) {
        cellView.model.attr('rect/stroke-width', 1);
        graph.resetCells(cellView);
    });

但我收到错误: TypeError: dia.Graph: cell type must be a string.

1 个答案:

答案 0 :(得分:0)

请删除graph.resetCells(cellView)并重试。