1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,17 @@ |
1 |
+digraph G { |
|
2 |
+ xyz [label = "hello\nworld",color="slateblue",fontsize=24,fontname="Palatino-Italic",style=filled,fontcolor="hotpink"]; |
|
3 |
+ node [style=filled]; |
|
4 |
+ red [color=red]; |
|
5 |
+ green [color=green]; |
|
6 |
+ blue [color=blue,fontcolor=black]; |
|
7 |
+ cyan [color=cyan]; |
|
8 |
+ magenta [color=magenta]; |
|
9 |
+ yellow [color=yellow]; |
|
10 |
+ orange [color=orange]; |
|
11 |
+ red -> green; |
|
12 |
+ red -> blue; |
|
13 |
+ blue -> cyan; |
|
14 |
+ blue -> magenta; |
|
15 |
+ green -> yellow; |
|
16 |
+ green -> orange; |
|
17 |
+} |