Visualize (directed) graphs with Qt

2.2k Views Asked by At

Are there widgets, libraries to visualize directed graphs of graphs in general with Qt? I want to build them in real time, while inspecting the JVM or is input/output with Graphviz the way to do?

2

There are 2 best solutions below

1
On BEST ANSWER

Create a dot file and process it with graphviz. The syntax is so straightforward it should be trivial to output, if you can trivially traverse the graph.

0
On

Looks like this is more suitable, it seems to have Qt frontend implementation. http://code.google.com/p/showgraph/