I’ve come across yet another graphing engine this morning… introducing Dracula.js

It kept giving me 'connection' not defined errors at first, but ALAS, after a bit of digging I found out that you needed to load raphael –the rendering engine for Dracula.js– before the Dracula library, like so;

<!-- Fetch raphael renderer js library -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>

<!-- Fetch graphdracula js library -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/graphdracula/1.0.3/dracula.min.js"></script>

Also this SO question was helpful in putting the GraphDracula svg into the intended container, as well as this codepen. So I get the graph below but still broken ☹️… can’t be perfect right…

to be continued…