aHunter
aHunter

Reputation: 3530

PHP GraphViz Documentation

Has anyone used graphviz-php and if so do they know where I can find any documentation regarding its usage/class structure etc?

Please note that this is the graphviz-php not the pear (image_graphviz).

Thanks

Upvotes: 6

Views: 9566

Answers (3)

Dominik
Dominik

Reputation: 1202

http://pear.php.net/manual/en/package.images.image-graphviz.example.php contains a usage example (updated)

Upvotes: 3

Tel
Tel

Reputation: 227

On CentOS, when you install the "graphviz-php" package you get a man page. It's pretty terse, you wouldn't want that to be your only reference, but at least you get something.

man 3 gv

For what it's worth, there's a very simple example here...

https://github.com/ellson/graphviz/blob/master/tclpkg/gv/demo/modgraph.php

Upvotes: 1

aHunter
aHunter

Reputation: 3530

I have found an explanation of the graphviz.php as below.

The GraphViz class allows for the creation of and the work with directed and undirected graphs and their visualization with AT&T's GraphViz tools.


  require_once 'Image/GraphViz.php';

  $graph = new Image_GraphViz();

  $graph->addNode(
    'Node1',
    array(
      'URL'   => 'http://link1',
      'label' => 'This is a label',
      'shape' => 'box'
    )
  );

  $graph->addNode(
    'Node2',
    array(
      'URL'      => 'http://link2',
      'fontsize' => '14'
    )
  );

  $graph->addNode(
    'Node3',
    array(
      'URL'      => 'http://link3',
      'fontsize' => '20'
    )
  );

  $graph->addEdge(
    array(
      'Node1' => 'Node2'
    ),
    array(
      'label' => 'Edge Label'
    )
  );

  $graph->addEdge(
     array(
       'Node1' => 'Node2'
     ),
     array(
      'color' => 'red'
   )
  );
  $graph->image();

Upvotes: 4

Related Questions