सदस्य:आदित्य चौधरी/प्रयोग पन्ना

भारत डिस्कवरी प्रस्तुति
यहाँ जाएँ:नेविगेशन, खोजें

<graphviz> digraph G {

 bgcolor="transparent";
 rankdir=LR;
 Dreieck  
   [shape=triangle, 
    style=filled, 
    color=blue, 
    fillcolor=midnightblue, 
    fontcolor=white];
 Ei 
   [shape=egg, 
    style=filled, 
    color=beige, 
    fillcolor=lightcoral];
 Kasten 
   [shape=box, 
    style=filled, 
    color=yellow, 
    fillcolor=green];
 Haus 
    [shape=house, 
     style=filled, 
     color=gray, 
     fillcolor=red];
 Kreis 
   [shape=circle,
    style=filled, 
    color=green, 
    fillcolor=lawngreen, 
    fontcolor=linen];
 Nix 
   [shape=none, 
    fontcolor=red];
 Dreieck -> Ei -> Kasten -> 
 Haus -> Kreis ->Nix [color=blue]; // Pfeile blau
 Standard -> Ei -> Haus [color=red]; // Standard vorher nicht definiert
                                   // Pfeile rot

</graphviz>