blueju / vue-g6-editor

https://www.yuque.com/blueju/g6-editor
https://www.yuque.com/blueju/g6-editor
85 stars 28 forks source link

老哥,咨询下flow下面的自动布局 #5

Open riversimith72 opened 4 years ago

riversimith72 commented 4 years ago

flow里面的graph的layout无法生效呢,如果节点没有设定坐标,就全部重合在一起了

blueju commented 4 years ago

不好意思,最近比较忙,所以没回复。

关于 flow 里面的 graph 的 layout 无法生效这个问题,我还使用到,不太清楚,有点我尝试一下。

lanlan112 commented 4 years ago

g6-editor内置的g62.0版本吧 layout(nodes) { nodes.forEach((node) => { node.x = node.x || Math.random() 800; node.y = node.y || Math.random() 800; }); }, 可以生效的