I want to embed a flow diagram drawing canvas in my program. Users would possible to:
After drawing, the program only needs to get the connection logic (in data structure like Directed graph) and properties for further calculation.
Is there any free or open source C++ library to do this? (Not necessary for cross-platform, available in windows is enough.)
I recently was looking in to this and came across a few other options, along with Graphviz:
http://igraph.sourceforge.net/screenshots.html
http://networkx.lanl.gov/gallery.html
I ended up using networkx. I'm going to be playing with Gephi shortly to see what kind of data I can load in to it.