The graph I have created using prefuse (shown below) is too dense! There are many nodes linking to many other nodes. Is there anyway I could display this more spread out?
Thanks in advance!

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Are you using a force based layout? If so, change the force parameters of your layout, or try a different layout action (radial, fructherman-rheinhold, etc). Most of the prefuse layouts have flexible layout parameters, which should fix your problem.
In particular, use
ForceDirectedLayout.getForceSimulator()to retrieve the ForceSimulator object for your layout, then change the parameters in your force array, which you can obtain viaForceSimulator,getForces()The default forces for the default ForceSimulator behind a ForceDirectedLayout are organized as follows:
index0 is NBodyForce:
index1 is DragForce (param 0 is drag)
index 2 is Spring force (for
edges)