Differences between revisions 12 and 16 (spanning 4 versions)
Revision 12 as of 2010-02-11 02:12:14
Size: 228
Editor: khsing
Comment:
Revision 16 as of 2010-06-08 04:37:26
Size: 229
Editor: ZoomQuiet
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
{{{#!GraphViz dot
digraph SomeGraph {
  $STD_GRAPH_HEADER
  A->{ B C }
  B->C->D

{{{#!dot
digraph SomeGraph {  
    rankdir=LR;
    甲->{ };
    乙->->丁;
Line 9: Line 10:
Line 10: Line 12:
digraph SomeGraph {
  $STD_GRAPH_HEADER
A->{ B C }
  B->C->D
digraph AnotherGraph {  
    A->{ B C };
   B->C->D;

GraphVizForMoin/DotExample (last edited 2013-02-05 11:33:08 by ZoomQuiet)