Your IP : 216.73.216.65


Current Path : /home/ataenra/www/ATA/INTRANET/Outils/jpgraph/Examples/
Upload File :
Current File : /home/ataenra/www/ATA/INTRANET/Outils/jpgraph/Examples/ganttex00.php

<?php // content="text/plain; charset=utf-8"
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_gantt.php');

// A new graph with automatic size
$graph = new GanttGraph();

//  A new activity on row '0'
$activity = new GanttBar(0,"Activity 1","2001-12-21","2002-01-19");
$graph->Add($activity);

// Display the Gantt chart
$graph->Stroke();
?>