静默将单元格添加到 JointJS 图形
Adding cell to JointJS graph silently
在JointJS中,如何在不触发任何事件的情况下将单元格添加到图形中?
当我传递可选参数时:
{
silent: true
}
单元格未在论文中呈现。
这是设计使然,请查看 jointjs docs.
的 Selection Collection 部分
selection.collection.add(element, { silent: true}); // add element to the collection, but renders no selection box.
在JointJS中,如何在不触发任何事件的情况下将单元格添加到图形中? 当我传递可选参数时:
{
silent: true
}
单元格未在论文中呈现。
这是设计使然,请查看 jointjs docs.
的 Selection Collection 部分selection.collection.add(element, { silent: true}); // add element to the collection, but renders no selection box.