<?php 
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_gantt.php');
 
$graph = new GanttGraph();
$graph->SetBox();
$graph->SetShadow();
 
$graph->title->Set("Example of captions");
$graph->title->SetFont(FF_ARIAL,FS_BOLD,12);
$graph->subtitle->Set("(ganttex15.php)");
 
$graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH);
 
 
$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2);
$graph->scale->month->SetFontColor("white");
$graph->scale->month->SetBackgroundColor("blue");
 
$graph->SetLabelVMarginFactor(1);
 
$activity = new GanttBar(0,"Project","2001-12-21","2002-01-07","[50%]");
 
$activity->SetPattern(BAND_RDIAG,"yellow");
$activity->SetFillColor("red");
 
$activity->SetHeight(10);
 
$activity->progress->Set(0.6);
$activity->progress->SetPattern(BAND_HVCROSS,"blue");
 
$activity2 = new GanttBar(1,"Project","2001-12-21","2002-01-02","[30%]");
 
$activity2->SetPattern(BAND_RDIAG,"yellow");
$activity2->SetFillColor("red");
 
$activity2->SetHeight(10);
 
$activity2->progress->Set(0.3);
$activity2->progress->SetPattern(BAND_HVCROSS,"blue");
 
$graph->Add($activity);
$graph->Add($activity2);
 
$vline = new GanttVLine("2001-12-24","Phase 1");
$vline->SetDayOffset(0.5);
 
$graph->Stroke();
?> |