In graph theory, a planar graph is a graph that can be embedded in the plane, i.e., it can be drawn on the plane in such a way that its edges intersect only at their endpoints.

What is the best open source program for drawing the planar graph with support of input nodes size and fixed drawing boundary region

link|improve this question

40% accept rate
feedback

closed as not constructive by Jeff Atwood Sep 12 '11 at 11:52

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

I have a few pointers for graph visualization methods:

  1. Prefuse - original version is in Java and the newer stuff is flash.

  2. Graphviz

  3. Networkx with matplotlib - all in python

  4. Ubigraph - for animated 3D visualization

link|improve this answer
+1 for graphviz – Mawg Apr 25 '10 at 0:20
feedback

I'd suggest use build your own using boost-graph libraries. A good information can be found on Donald knuth home page. There are some softwares which I have not used very much. Graphthing is one of those. I do not think it'll meet your requirement. If you are a research guy, then I personally recommend not to be inclined towards visualization of graphs.

link|improve this answer
feedback

I've found this one useful for all kinds of 2D work..

http://www.yworks.com/en/products_yed_about.html

It's java based so you should be able to run it anywhere you have a suitable jvm.

link|improve this answer
feedback

Graphanalyzer

link|improve this answer
feedback

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