I have too many nodes in my data, and I find out it's really not OK to visualize them by using cytoscape js. Does anyone have similar problem, or there are some solution to my problem, see my graph here.
Any suggestion and ideas is welcome. Thanks.
I have too many nodes in my data, and I find out it's really not OK to visualize them by using cytoscape js. Does anyone have similar problem, or there are some solution to my problem, see my graph here.
Any suggestion and ideas is welcome. Thanks.
Arbor, like all forcedirected layouts, are very nice in that they can often generate acceptable layouts. However, there are many problems with them, including
Math.random()
for initial positions),If you have a large dataset, you should consider using one of the alternative layouts. The breadthfirst layout often generates good results. You also have the option of writing alternative layouts yourself that are tailored to your data. It's a very straightforward process that is outlined in the documentation.