HB/onyx2/include/jpgraph/Examples/ganttex00.php

15 lines
310 B
PHP
Raw Normal View History

2008-11-08 11:00:00 +00:00
<?php
include ("../jpgraph.php");
include ("../jpgraph_gantt.php");
// A new graph with automatic size
$graph = new GanttGraph(0,0,"auto");
// A new activity on row '0'
$activity = new GanttBar(0,"Project","2001-12-21","2002-02-20");
$graph->Add($activity);
// Display the Gantt chart
$graph->Stroke();
?>