2

I've been looking around here for any reference to a java library for visual representation of graphs but I only find libraries for histograms, pie charts, and others. I'm looking for a library for graphs, the ones with vertex, nodes and all that. Anyone could recomend any?

Kenny D.
  • 927
  • 3
  • 11
  • 29

2 Answers2

5

I would go with JUNG java graph library. It has not only vertex and nodes, but also most common algorithms implemented like shortest path algorithms or algorithms for calculating graph properties - metrics like clustering coefficient, degree distribution. Its community is active and well responsive to question on user mail list.

tartar
  • 688
  • 4
  • 16
3

jgraph is promising. FYI, There's also JGraphT (but that's just for processing graphs not visualization.

st0le
  • 33,375
  • 8
  • 89
  • 89