我正在尝试在鼠标按下事件时重置一个单元格。例如,如果用户点击矩形,我想将其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.
答案 0 :(得分:0)
请删除graph.resetCells(cellView)并重试。