digraph G {
subgraph cluster_base{
label = "table border:10,cellspacing:0,cellpadding:0,cell border:1";
node [shape=plaintext]
tbl1100 [label=<
00 | 01 | 02 | 03 |
10 | 11 | 12 | 13 |
20 | 22 |
30 | 31 | 32 | 33 |
>];
}
subgraph cluster_table_border {
label="table border:10,cellspacing:0,cellpadding:10,cell border:1";
node [shape=plaintext]
tbl1010 [label=<
00 | 01 | 02 | 03 |
10 | 11 | 12 | 13 |
20 | 22 |
30 | 31 | 32 | 33 |
>];
}
subgraph cluster_cellspacing {
label="table border:10,cellspacing:10,cellpadding:10,cell border:0";
node [shape=plaintext]
tbl1110 [label=<
00 | 01 | 02 | 03 |
10 | 11 | 12 | 13 |
20 | 22 |
30 | 31 | 32 | 33 |
>];
}
subgraph cluster_cellpadding {
label="table border:10,cellspacing:10,cellpadding:10,cell border:3";
node [shape=plaintext]
tbl1111 [label=<
00 | 01 | 02 | 03 |
10 | 11 | 12 | 13 |
20 | 22 |
30 | 31 | 32 | 33 |
>];
}
}