Reputation: 837
Does anyone know of a good online site for rendering graphviz dot files that will take larger files (say, 200 lines; 200 nodes )?
I was using http://graphviz-dev.appspot.com/ & it used to work fine so far but the moment I cross about 100 lines it seems to throw errors. Can someone else check maybe?
Upvotes: 9
Views: 22981
Reputation: 25273
There's the Graphviz renderer build of the original viz.js
repo. According to the description it's:
... a Makefile for building Graphviz with Emscripten and a simple wrapper for using it in the browser.
So I would expect most Graphviz's features. Though it couldn't render this 8K .dot file complaining about limit of 16MiB (can be configured). Reducing the size I have got it rendered first 1K lines without an error.
Upvotes: 5
Reputation: 1191
GraphvizOnline http://dreampuf.github.io/GraphvizOnline/ Edit and render the dot file online
Upvotes: 23
Reputation: 837
This online tool by HermannSW works great with arbitrary sized files:
http://stamm-wilbrandt.de/GraphvizFiddle/
For documentation see here:
https://www.ibm.com/developerworks/community/blogs/HermannSW/entry/graphvizfiddle?lang=en
Upvotes: 3