Preply — Study more efficiently by working with a personal tutor. Get 50% off.Affiliate

Wikipedia

DOT (graph description language)

DOT is a graph description language, developed as a part of the Graphviz project. DOT graphs are typically stored as files with the .gv or .dot filename extension — .gv is preferred, to avoid confusion with the .dot extension used by versions of Microsoft Word before 2007. dot is also the name of the main program to process DOT files in the Graphviz package. Various programs can process DOT files. Some, such as dot, neato, twopi, circo, fdp, and sfdp, can read a DOT file and render it in graphical form. Others, such as gvpr, gc, acyclic, ccomps, sccmap, and tred, read DOT files and perform calculations on the represented graph. Finally, others, such as lefty, dotty, and grappa, provide an interactive interface. The GVedit tool combines a text editor and a non-interactive viewer. Most programs are part of the Graphviz package or use it internally. DOT is historically an acronym for "DAG of tomorrow", as the successor to a DAG format and a dag program which handled only directed acyclic graphs.

Syntax

Graph types

Undirected graphs

At its simplest, DOT can be used to describe an undirected graph. An undirected graph shows simple relations between objects, such as reciprocal friendship between people. The graph keyword is used to begin a new graph, and nodes are described within curly braces. A double-hyphen (--) is used to show relations between the nodes.

Directed graphs

Similar to undirected graphs, DOT can describe directed graphs, such as flowcharts and dependency trees. The syntax is the same as for undirected graphs, except the digraph keyword is used to begin the graph, and an arrow (->) is used to show relationships between nodes.

Attributes

Various attributes can be applied to graphs, nodes and edges in DOT files. These attributes can control aspects such as color, shape, and line styles. For nodes and edges, one or more attribute–value pairs are placed in square brackets [] after a statement and before the semicolon (which is optional). Graph attributes are specified as direct attribute–value pairs under the graph element, where multiple attributes are separated by a comma or using multiple sets of square brackets, while node attributes are placed after a statement containing only the name of the node, but not the relations between the dots.

HTML-like labels are supported, although initially Graphviz did not handle them.

Comments DOT supports C and C++ style single line and multiple line comments. In addition, it ignores lines with a number sign symbol # as their first character, like many interpreted languages.

Layout programs

The DOT language defines a graph, but does not provide facilities for rendering the graph. There are several programs that can be used to render, view, and manipulate graphs in the DOT language:

General Graphviz – a collection of CLI utilities and libraries to manipulate and render graphs into different formats like SVG, PDF, PNG etc. dot – CLI tool for conversion between .dot and other formats

JavaScript Canviz – a JavaScript library for rendering DOT files d3-graphviz – a JavaScript library based on Viz.js and D3.js that renders DOT graphs and supports animated transitions between graphs and interactive graph manipulation Vis.js – a JavaScript library that accept DOT as input for network graphs. Viz.js – a JavaScript port of Graphviz that provides a simple wrapper for using it in the browser. hpcc-js/wasm Graphviz – a fast WASM library for Graphviz similar to Viz.js

Java Gephi – an interactive visualization and exploration platform for all kinds of networks and complex systems, dynamic and hierarchical graphs Grappa – a partial port of Graphviz to Java graphviz-java – an open source partial port of Graphviz to Java available from github.com ZGRViewer – a DOT viewer

Other Beluging – a Python- & Google Cloud Platform-based viewer of DOT and Beluga extensions Delineate – a Rust application for Linux that can edit fully-featured DOT graph with interactive preview, and export as PNG, SVG, or JPEG dot2tex – a program to convert files from DOT to PGF/TikZ or PSTricks, both of which are rendered in LaTeX OmniGraffle – a digital illustration application for macOS that can import a subset of DOT, producing an editable document (but the result cannot be exported back to DOT) Tulip – a software framework in C++ that can import DOT files for analysis VizierFX – an Apache Flex graph rendering library in ActionScript

Notes

See also

External links DOT tutorial and specification Drawing graphs with dot Node, Edge and Graph Attributes Node Shapes Gallery of examples Graphviz Online: instant conversion and visualization of DOT descriptions Boost Graph Library lisp2dot or tree2dot: convert Lisp programming language-like program trees to DOT language (designed for use with genetic programming)

Tags

  • Graph description languages
  • Graph drawing
  • Mathematical software