user984200
user984200

Reputation: 293

Java graph layout algorithms

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

Answers (2)

Jamison Jiang
Jamison Jiang

Reputation: 53

Maybe you can use recently open-sourced graph-support which is a java version of tiny graphviz.

Upvotes: 0

rlegendi
rlegendi

Reputation: 10606

I would recommend using the GraphStream API. It handles the DOT format and the visualization is quite nice.

Upvotes: 7

Related Questions