Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
include ("../jpgraph.php");
3
include ("../jpgraph_gantt.php");
4
 
5
// A new graph with automatic size
6
$graph = new GanttGraph(0,0,"auto");
7
 
8
//  A new activity on row '0'
9
$activity = new GanttBar(0,"Project","2001-12-21","2002-01-20");
10
$graph->Add($activity);
11
 
12
// Display the Gantt chart
13
$graph->Stroke();
14
?>