tags:

views:

178

answers:

7

Is there any libraries to visualizate simple dependency graphs? I suppose that SVG is good solution.

A: 

I used http://www.aditus.nu/jpgraph/ for drawing simple graphs.

Cipi
A: 

ChartDirector is the best, and it has a lot of flavors thus has versions for PHP/ASP/COM/VB/.NET/JSP/Java/ColdFusion/Perl/Python/Ruby/C++.

By learning one, you then be able to use in many programming languages.

Pentium10
+1  A: 

I really like Google Chart API: http://code.google.com/intl/fr/apis/chart/

Really simple to implement and there are quite a lot of graph styles.

Guillaume Flandre
+1  A: 

I'm not sure about PHP libraries, but there's the tool called GraphWiz which can be invoked from your PHP code and produce .SVG visialization of your graph.

Igor Korkhov
Yeah, I meant "dependency graph".Thank you for great library.
Kirzilla
A: 

The if you mean graphs like in "dependency graph", then Graphviz should be mentioned.

Otto Allmendinger
+1  A: 

Checkout http://thejit.org/

ntha
+1  A: 

GraphViz does a nice job for tiny graphs, but not for huge ones. If your graph is reasonlably large, try aiSee or have a look at the alternatives on this list.

RegDwight