dracula icon indicating copy to clipboard operation
dracula copied to clipboard

Renderer for Graphviz graphs?

Open LeMoussel opened this issue 12 years ago • 1 comments

Is it possible to display Graphviz graphs (xdot renderer) with vivagraph?

Example of Graphviz dot file

digraph G { 0 [label="A"]; 1 [label="B"]; 2 [label="C"]; 3 [label="D"]; 4 [label="E"]; 0 -> 1 [ ]; 0 -> 3 [ ]; 1 -> 2 [ ]; 1 -> 4 [ ]; 2 -> 3 [ ]; 3 -> 4 [ ]; }

LeMoussel avatar Nov 11 '13 07:11 LeMoussel

Would this not be possible if Dracula is combined with Viz.js (https://github.com/mdaines/viz.js)? I have no idea if it is possible to convert a Viz object into a Graph object.

mdehollander avatar Feb 26 '14 16:02 mdehollander