Jump to content

Graphviz: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
ArthurBot (talk | contribs)
m robot Adding: cs:Graphviz
Line 39: Line 39:


* [[AsciiDoc]] can embed Graphviz syntax as a diagram
* [[AsciiDoc]] can embed Graphviz syntax as a diagram
* [[ConnectedText]] has a Graphviz plugin.
* [[Doxygen]] uses Graphviz to generate diagrams including class hierarchies and collaboration for [[computer program]] [[source code]].
* [[Doxygen]] uses Graphviz to generate diagrams including class hierarchies and collaboration for [[computer program]] [[source code]].
* [[GRAMPS]] uses Graphviz to create family trees
* [[GRAMPS]] uses Graphviz to create family trees

Revision as of 02:51, 17 August 2010

Graphviz
Developer(s)AT&T Research Labs and Contributors[1]
Stable release
2.26.0 / December 10, 2009; 15 years ago (2009-12-10)
Preview release
2.27.0 / December 14, 2009; 15 years ago (2009-12-14)
Repository
Operating systemLinux, Windows, Mac OS X
TypeGraph Visualization
LicenseCommon Public License
Websitehttp://graphviz.org/
File:Mvblog29jan06h.jpg
Visual rendering by Graphviz. This graph visualises the relationship between a group of bloggers.
Undirected graph showing adjacency of the 48 contiguous United States

Graphviz (short for Graph Visualization Software) is a package of open source tools initiated by AT&T Research Labs for drawing graphs specified in DOT language scripts. It also provides libraries for software applications to use the tools. Graphviz is free software licensed under the Common Public License.

Architecture

Graphviz consists of a graph description language named the DOT language[2] and a set of tools that can generate and/or process DOT files:

dot
a command-line tool to lay out directed graphs into a variety of output formats (PostScript, PDF, SVG, annotated text and so on).
neato
for "spring model" layout (in Mac OS version called "energy minimised")
twopi
for radial graph layouts.
circo
for circular graph layouts.
fdp
another layout engine for undirected graphs.
dotty
a graphical user interface to visualize and edit graphs.
lefty
a programmable (in a language inspired by EZ[3]) widget that displays DOT graphs and allows the user to perform actions on them with the mouse. Lefty can therefore be used as the view in a model-view-controller GUI application that uses graphs.

Applications

See also

Related software

References