答案 0 :(得分:1)
您可以使用layout选项。如果这还不够,请file a feature request如果您想申请新功能或选项。
答案 1 :(得分:1)
在nodeSep
选项中使用layout
属性
例如:
var cy = window.cy = cytoscape({
container: document.getElementById('cy'),
layout: {
stop: function () {
cy.automove({
nodesMatching: cy.$(':parent *'),
reposition: 'drag',
dragWith: cy.$(':parent *')
});
},
name: 'cose-bilkent',
animate: 'end',
nodeSep: 20, // >>>>>>YOUR TARGET PROPERTY<<<<<<<
animationEasing: 'ease-out',
animationDuration: 2000
}});