File: pydot_children_wrong_order_style.dot

package info (click to toggle)
python-pydotplus 2.0.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,832 kB
  • sloc: python: 1,755; makefile: 164
file content (36 lines) | stat: -rw-r--r-- 983 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
digraph G {
   b [style=bold]
   c [style=dashed]
   d [style=dotted]
   e [style="setlinewidth(3)"]
   f [style=invis]
   g [style=solid]
   a -> b [style=bold]
   a -> c [style=dashed]
   a -> d [style=dotted]
   a -> e [style="setlinewidth(3)"]
   a -> f [style=invis]
   a -> g [style=solid]
   B [shape=box,style="bold,rounded"]
   C [shape=diamond,style="dashed,rounded"]
   D [style="dotted,rounded"]
   E [style="setlinewidth(3),rounded"]
   BD [style="bold,rounded,diagonals"]
   CD [shape=diamond, style="dashed,rounded,diagonals"]
   DD [style="dotted,rounded,diagonals"]
   ED [style="setlinewidth(3),rounded,diagonals"]
   BFD [style="filled, bold,rounded,diagonals"]
   CFD [style="filled, dashed,rounded,diagonals"]
   DFD [style="filled, dotted,rounded,diagonals"]
   EFD [style="filled, setlinewidth(3),rounded,diagonals"]
   B -> BD -> BFD
   C -> CD -> CFD
   D -> DD -> DFD
   E -> ED -> EFD
   subgraph clusterA {
      style=rounded
      1 -> {2 3}
   }

  
}