Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renderer for Graphviz graphs? #23

Open
LeMoussel opened this issue Nov 11, 2013 · 1 comment
Open

Renderer for Graphviz graphs? #23

LeMoussel opened this issue Nov 11, 2013 · 1 comment

Comments

@LeMoussel
Copy link

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 [ ];
}

@mdehollander
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants