Graphviz
Graphviz creates directed and undirected graphs from the DOT language.
Use this type
Use Graphviz when graph structure and automatic layout are more important than manual placement.
Source format
The source format is DOT text. Enter the source in the diagram.zip editor.
Syntax essentials
- Use
digraphfor directed edges. - Use
graphfor undirected edges. - Use
->for a directed edge. - Use
--for an undirected edge. - Put attributes in square brackets.
Example
digraph delivery {
rankdir=LR
idea -> agent -> diagram
}
Rendered exampleDrag to pan. Use the wheel or controls to zoom.