Is there an Open Source java alternative to GraphViz? I'm aware of the existence of Grappa which basically wraps the Graph interface to GraphViz as an JavaAPI. However the layouting is still done by the GraphViz binaries.

I'm looking for a pure-java, open source library providing the same functions and layouting algorithms as GraphViz.

link|improve this question

76% accept rate
feedback

7 Answers

up vote 6 down vote accepted

You can have a look at JUNG (Java Universal Network/Graph Framework) which has visualization and analytics functions. It's open source and available at: http://jung.sourceforge.net/

link|improve this answer
feedback

Interestingly, the Eclipse project has an SWT/JFace component/framework capable of displaying and generating (import/export) Graphviz's 'DOT' format, in pure Java:

ZEST (home page & download links)

See http://wiki.eclipse.org/Graphviz_DOT_as_a_DSL_for_Zest for usage examples.

Although ZEST is touted as an Eclipse plugin, it does seem that the DOT-manipulation API's can be used standalone and external to an Eclipse installation.

Cheers

Rich

link|improve this answer
feedback

You could look at JGraph though I have never used it so cannot comment on now it compares to GraphViz.

link|improve this answer
feedback

I guess ZGRViewer is what you want. I really like ZGRViewer and AJaPaD.

link|improve this answer
The layout is still done by the graphviz binaries. – schmmd Apr 27 at 20:46
feedback

yFiles seems to provide all this, but it's not free and not really cheap either. But then again it seems to be a very professional product (haven't used it, except in yEd, which can be used for free).

link|improve this answer
feedback

this is closely related to my question over there about graph drawing in java

link|improve this answer
feedback

I worked with yFiles about four years ago, and it was excellent. It's costly (though less than JGraph, apparently) but I work in a CS research lab and have access to their generous academic pricing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.