You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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 [ ];
}
The text was updated successfully, but these errors were encountered: