Created
May 23, 2018 14:30
-
-
Save magjac/bf9659ab3117e274bdd0404fd83fdc2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<body> | |
<script src="https://d3js.org/d3.v5.js"></script> | |
<script src="https://unpkg.com/viz.js@1.8.1/viz.js" type="application/javascript"></script> | |
<script src="https://unpkg.com/d3-graphviz@2.1.0/build/d3-graphviz.js"></script> | |
<div id="graph" style="text-align: center;"></div> | |
<script> | |
d3.select("#graph").graphviz(false) | |
.renderDot('digraph {a -> b}'); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment