Reputation: 293
In my Java application, i need some sort of a layout algorithm. The first approach is as follows:
But this solution requires the graphviz package installed on the running machines. I want to get rid of this dependency and i am searching for an adequate replacement.
Can you recommend any good and simple java layout algorithm? Do you have any experiences?
Thanks
Upvotes: 5
Views: 5658
Reputation: 53
Maybe you can use recently open-sourced graph-support which is a java version of tiny graphviz.
Upvotes: 0
Reputation: 10606
I would recommend using the GraphStream API. It handles the DOT format and the visualization is quite nice.
Upvotes: 7