mihajlv
mihajlv

Reputation: 2315

How to edit graphs by graphviz?

Is any one familiar with any c open source code that does graph manipulation (point and click) using the layout algorithms of graph viz? I would like to use the algorithms to lay out a graph which I could later manipulate in a GUI.

Upvotes: 4

Views: 352

Answers (1)

CapelliC
CapelliC

Reputation: 60014

graphviz C code and architecture are rather sophisticated. You can take a look at canviz. It's Javascript rendering engine that you could port to C.

Some time ago I tried the qt way, following this post, but that wasn't an easy route.

Upvotes: 2

Related Questions