gpt4 book ai didi

Cytoscape.js如何手动停止布局处理

转载 作者:行者123 更新时间:2023-12-01 16:53:37 26 4
gpt4 key购买 nike

我正在使用带有乔木布局的 cytoscape.js。有没有办法手动停止布局渲染?在文档中,我看到了“layoutstop”事件,但无法真正停止布局。

谢谢

最佳答案

如果有人感兴趣的话,我是这样解决这个问题的:我只是在 stableEnergy 函数中放置了一个全局 stop_layout 变量。丑陋但有效。耶!

var stop_layout = false;
layout_params = {
name: 'arbor',
stableEnergy: function(energy){
var e = energy;
return (e.max <= 0.5) || (e.mean <= 0.3) || stop_layout;
}
};

// Then change the stop_layout value when you want to run or stop layout processing

关于Cytoscape.js如何手动停止布局处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21854134/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com