]> git.sur5r.net Git - bacula/bacula/blob - gui/bacula-web/external_packages/phplot/examples/example1.php
Update
[bacula/bacula] / gui / bacula-web / external_packages / phplot / examples / example1.php
1 <?php
2 //Include the code
3 include("../phplot.php");
4
5 //Define the object
6 $graph = new PHPlot;
7
8 //Set some data
9 include("./data.php");
10 $graph->SetDataValues($example_data);
11
12
13 //Draw it
14 $graph->DrawGraph();
15
16 ?>