Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java: what library is used to create diagrams like below?

I came across the following,

what Java library allows me to create those lines connecting boxes, i don't know what it's called.

enter image description here

like image 854
KJW Avatar asked Mar 13 '12 23:03

KJW


2 Answers

Check out JGraph - graph visualization library. It is pretty powerful and versatile, open source, Java version is Swing based. Java version is free. See their sample diagrams on the front page.

like image 120
tenorsax Avatar answered Sep 24 '22 05:09

tenorsax


You may want to check out GraphViz, but their site is currently down. Its a general purpose data visualization library. It's not a Java library internally but it has a Java wrapper called Grappa also on their site's download page. In the mean time, you can google it up and take a look at this wiki page.

like image 22
XiaoChuan Yu Avatar answered Sep 21 '22 05:09

XiaoChuan Yu