Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Graphviz: Online tool capable of accepting larger files [closed]

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?

like image 993
curious_cat Avatar asked Jan 30 '15 17:01

curious_cat


People also ask

Why is graphviz used?

Graphviz is an open-source python module that is used to create graph objects which can be completed using different nodes and edges. It is based on the DOT language of the Graphviz software and in python it allows us to download the source code of the graph in DOT language.

How do I open a dot file in graphviz?

For windows: dl the msi and install; Find gvedit.exe in your programs list; Open . dot file in question; Click running person on toolbar; Go to graph -> settings ; change Output file type to file type of your liking and press ok..

Is graphviz open-source?

Graphviz (short for Graph Visualization Software) is a package of open-source tools initiated by AT&T Labs Research for drawing graphs specified in DOT language scripts having the file name extension "gv". It also provides libraries for software applications to use the tools.


3 Answers

GraphvizOnline http://dreampuf.github.io/GraphvizOnline/ Edit and render the dot file online

like image 106
Dreampuf Avatar answered Oct 17 '22 05:10

Dreampuf


There's Graphviz renderer in GitHub Pages of 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.

like image 25
saaj Avatar answered Oct 17 '22 05:10

saaj


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

like image 3
curious_cat Avatar answered Oct 17 '22 05:10

curious_cat