up vote 22 down vote favorite
16
share [g+] share [fb]

I'm looking for a (free) library which allows me to draw a CFG (control flow graph). Something like yFiles, but free or preferably open source? Ideally this library would allow the user to navigate the graph (and modify it), i.e. the graph isn't just a static a priori rendered bitmap. Ideas?

Update:
Glee in combination with the mentioned QuickGraph library seems to work pretty nice. thx

Update2: Graph# seems to be the most powerful library currently. There is also a nice tutorial on how to use it.

link|improve this question

1  
GLEE is now called Microsoft Automatic Graph Layout (MSAGL). MSAGL is distributed in a binary form only. A commercial license has to be bought. – Sadeq Dousti Jun 15 '11 at 1:28
feedback

6 Answers

up vote 12 down vote accepted

You might want to check out QuickGraph.

NodeXL might also be of interest (visualization library). It's WPF, but you can use a container to host it if you need WinForms.

link|improve this answer
Looks interesting, though this seems to be the "algorithm part", not the "visualization part", right? – newgre Apr 10 '09 at 14:36
Just added some info on NodeXL, which is a visualization API. – dommer Apr 10 '09 at 14:59
feedback

Try out this (Efficient Sugiyama algorithm is your friend):

Graph#

link|improve this answer
feedback

I use GraphViz to generate this sort of graph. My app generates the .dot file that can then is then passed into GraphViz. It supports a load of file formats, such as bmp, jpg, png, pdf, svg etc etc.

link|improve this answer
feedback

Another one is: http://www.codeproject.com/KB/graphics/Painter.aspx

link|improve this answer
Not a graph drawing tool. – dkantowitz Jan 29 '11 at 20:09
feedback

Try Microsoft Chart Controls for Microsoft .NET Framework 3.5

link|improve this answer
feedback

ZedGraph has been able to produce all the graphs I've ever needed.

link|improve this answer
This seems to be a lib to draw bar charts etc. Not what I'm looking for – newgre Apr 10 '09 at 14:42
feedback

Your Answer

 
or
required, but never shown

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