Top "Dot" questions

DOT is both a mathematical graph description language and a particular graph rendering engine (dot).

Changing edge direction in dot

I'm trying to draw a pretty simple diagram in dot. digraph untitled { rankdir = LR; {rank=same; S; A} B -&…

graphviz dot
How to parse a DOT file in Python

I have a transducer saved in the form of a DOT file. I can see a graphical representation of the …

python parsing dot morphological-analysis transducer
Horizontal Trees in Graphviz

I've made a tree in the dot language, similar to the one here. Is there any way I could get …

graphviz dot
Graphviz .dot node ordering

I'm building a epsilon NFA to recognize a regular expression using the canonical construction. I'm using subgraphs to group various …

graphviz dot
doxygen and graphviz doesn't generate map files

I am trying Graphviz and doxygen on a rather large C++ library to generate UML. It generates the .dot files …

uml doxygen graphviz dot
Rank attribute is confusing to me

Rank attribute on edge has five values "same", "min", "source", "max", "sink". Except "same", I have no idea when to …

graphviz dot
Reading DOT files in javascript/d3

Is there a standard way to read and parse DOT graph files in javascript, ideally in way that will work …

d3.js dot
Graphviz DOT arrange Nodes in circles, layout too "compact"

I'm halfway there please see the edit OK here's my problem, I'm generating a graph of a python module, including …

layout graph graphviz dot
subgraph cluster ranking in dot

I'm trying to use graphviz on media wiki as a documentation tool for software. First, I documented some class relationships …

graphviz dot
Graphviz: how to set 'default' arrow style?

Consider this dot language code: digraph graphname { subgraph clusterA { node [shape=plaintext,style=filled]; 1 -> 2 [arrowhead=normal,arrowtail=dot]; 2 …

graphviz dot