Table of Contents maxLevel 3 minLevel 2 type flat separator pipe
Warning | ||
---|---|---|
| ||
Please note that thethe URL user andand URL password parameters are deprecated and will be removed on March 31, 2022user password macro parameters were removed (see Deprecation notice: URL user and URL user password parameters). We recommend usingusing profiles to access yourexternal data from remote locations. |
Description
The Graph Macro creates undirected graphs using the Graphviz language. This language is extremely versatile and powerful, but you can start with a really simple example as shown below, and then gradually improve your knowledge and create more advanced diagrams easily.
Graphviz Resources
Include Page | ||||
---|---|---|---|---|
|
Parameters
Include Page | ||||
---|---|---|---|---|
|
Examples
These are some very basic examples of what you can achieve easily. For more advanced layouts and formatting, please refer to the Graphviz resources.
Macro Call | Macro Output |
---|---|
{graph}
e
subgraph clusterA {
a -- b;
subgraph clusterC {
C -- D;
}
}
subgraph clusterB {
d -- f
}
d -- D
e -- clusterB
clusterC -- clusterB
{graph} | |
compound=true;
subgraph cluster0 {
a -- b;
a -- c;
b -- d;
c -- d;
}
subgraph cluster1 {
e -- g;
e -- f;
}
b -- f [lhead=cluster1];
d -- e;
c -- g [ltail=cluster0,
lhead=cluster1];
c -- e [ltail=cluster0];
d -- h;
|