Skip to content

Graphviz

Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains.

Shape

Simple example

digraph MainLoop {
now_time -> duration -> pre_time -> lag -> check_lag;
check_lag -> update_loop;
check_lag -> render;
update_loop -> render;
}

Bidirectional edges

strict digraph graphName {
A->B [dir="both"]
}

OR:

strict digraph graphName {
concentrate=true
A->B
B->A
}

List of UML Software

List of UML Software

AmaterasUML, ArgoUML, BOUML, Chart Mage, D2, Dia, DotUML, EclipseUML, GenMyModel, Graphviz, Green UML, LaTeX to UML, MermaidJS, Modelio, NClass, Nomnoml, ObjectAid, PlantUML, StarUML, TextUML, Textual UML tools for Sequence diagrams, Together, UML Graph, USE, Umbrello UML Modeller, Umple, Violet UML Editor, Visio, ZenUML, eUML2 Free, yUML

See also

Favorite site

Documentation

Web Interface

How to use

C/C++ API

Online demo