blob: 7fcec8b0013e2fb1b308098994b4e6e05686f8a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
graph graphname {
// This attribute applies to the graph itself
size="1,1";
// The label attribute can be used to change the label of a node
a [label="Foo"];
// Here, the node shape is changed.
b [shape=box];
// These edges both have different line properties
a -- b -- c [color=blue];
b -- d [style=dotted];
// [style=invis] hides a node.
}
|