fL
Size: a a a
fL
fL
fL
import pydot
dot_string = """digraph G {
rankdir=TD;
splines=ortho;
node [fontname="Courier New", fontsize=9, shape=box];
1 [label="Lower"];
13 [label="Bottom"];
1 -> 13 [color=red];
1 -> 1 [color=blue];
{13} -> {1} [color=green];
}
}"""
graph = pydot.graph_from_dot_data(dot_string)
graph[0].write_png('test_order.png')
fL
import pydot
dot_string = """digraph G {
rankdir=TD;
splines=ortho;
node [fontname="Courier New", fontsize=9, shape=box];
1 [label="Lower"];
13 [label="Bottom"];
1 -> 13 [color=red];
1 -> 1 [color=blue];
13 -> 1 [color=green];
}
}"""
graph = pydot.graph_from_dot_data(dot_string)
graph[0].write_png('test_order.png')
fL
AT
AT
AT
AT
fL
AT
fL
AT
AT
fL
fL
D
pl
AT