test.php (jpgraph-4.3.4) | : | test.php (jpgraph-4.3.5) | ||
---|---|---|---|---|
<?php // content="text/plain; charset=utf-8" | <?php // content="text/plain; charset=utf-8" | |||
require_once ('jpgraph/jpgraph.php'); | require_once ('jpgraph/jpgraph.php'); | |||
require_once ('jpgraph/jpgraph_line.php'); | require_once ('jpgraph/jpgraph_gantt.php'); | |||
//require_once ('jpgraph/jpgraph_regstat.php'); | require_once ('jpgraph/jpgraph_flags.php'); | |||
error_reporting(E_ALL); | $graph = new GanttGraph(0,0); | |||
ini_set("display_errors", 1); | //$graph->ClearTheme(); | |||
$graph->SetBox(); | ||||
$graph = new Graph(1168,170); | $graph->SetShadow(); | |||
$graph->SetMargin(60,20,20,50); | ||||
$graph->SetScale('textlin'); | // Add title and subtitle | |||
$graph->title->Set("Example with added texts"); | ||||
$ydata = array(0=> 95.5, 1 => 94.32); | //$graph->title->SetFont(FF_ARIAL,FS_BOLD,12); | |||
$line = new LinePlot($ydata); | // Show day, week and month scale | |||
$graph->Add($line); | $graph->ShowHeaders(GANTT_HDAY | GANTT_HWEEK | GANTT_HMONTH); | |||
$graph->yaxis->HideLine(false); | // Set table title | |||
$graph->yaxis->HideTicks(false,false); | $graph->scale->tableTitle->Set("(Rev: 1.22)"); | |||
$graph->xaxis->HideTicks(false,false); | //$graph->scale->tableTitle->SetFont(FF_FONT1,FS_BOLD); | |||
$graph->xaxis->SetTextTickInterval(5,4); | $graph->scale->SetTableTitleBackground("silver"); | |||
$line->SetLegend('Yield % By Distillation'); | ||||
// Modify the appearance of the dividing lines | ||||
$graph->yaxis->title->Set('Yield %'); | $graph->scale->divider->SetWeight(3); | |||
$graph->yaxis->SetTitleMargin(40); | $graph->scale->divider->SetColor("navy"); | |||
$graph->xgrid->Show(); | $graph->scale->dividerh->SetWeight(3); | |||
$graph->xgrid->SetLineStyle("solid"); | $graph->scale->dividerh->SetColor("navy"); | |||
// Use the short name of the month together with a 2 digit year | ||||
// on the month scale | ||||
$graph->scale->month->SetStyle(MONTHSTYLE_SHORTNAMEYEAR2); | ||||
$graph->scale->month->SetFontColor("white"); | ||||
$graph->scale->month->SetBackgroundColor("blue"); | ||||
$graph->scale->day->grid->Show(); | ||||
// 0 % vertical label margin | ||||
$graph->SetLabelVMarginFactor(1); | ||||
// Format the bar for the first activity | ||||
// ($row,$title,$startdate,$enddate) | ||||
$activity = new GanttBar(0,"Project","2001-12-21","2002-01-07","[50%]"); | ||||
// Yellow diagonal line pattern on a red background | ||||
$activity->SetPattern(BAND_RDIAG,"yellow"); | ||||
$activity->SetFillColor("red"); | ||||
// Set absolute height | ||||
$activity->SetHeight(10); | ||||
// Specify progress to 60% | ||||
$activity->progress->Set(0.6); | ||||
$activity->progress->SetPattern(BAND_HVCROSS,"blue"); | ||||
// Format the bar for the second activity | ||||
// ($row,$title,$startdate,$enddate) | ||||
$activity2 = new GanttBar(1,"Project","2001-12-21","2001-12-27","[30%]"); | ||||
// Yellow diagonal line pattern on a red background | ||||
$activity2->SetPattern(BAND_RDIAG,"yellow"); | ||||
$activity2->SetFillColor("red"); | ||||
// Set absolute height | ||||
$activity2->SetHeight(10); | ||||
// Specify progress to 30% | ||||
$activity2->progress->Set(0.3); | ||||
$activity2->progress->SetPattern(BAND_HVCROSS,"blue"); | ||||
// Finally add the bar to the graph | ||||
$graph->Add($activity); | ||||
$graph->Add($activity2); | ||||
// Add text to top left corner of graph | ||||
$txt1 = new Text(); | ||||
$txt1->SetPos(5,2); | ||||
$txt1->Set("Note:\nEstimate done w148"); | ||||
//$txt1->SetFont(FF_ARIAL,FS_BOLD,12); | ||||
$txt1->SetColor('darkred'); | ||||
$graph->Add($txt1); | ||||
// Add text to the top bar | ||||
$txt2 = new Text(); | ||||
$txt2->SetScalePos("2002-01-01",1); | ||||
//$txt2->SetFont(FF_ARIAL,FS_BOLD,12); | ||||
$txt2->SetAlign('left','center'); | ||||
$txt2->Set("Remember this!"); | ||||
$txt2->SetBox('yellow'); | ||||
$graph->Add($txt2); | ||||
// Add a vertical line | ||||
$vline = new GanttVLine("2001-12-24","Phase 1"); | ||||
//$vline->SetDayOffset(0.5); | ||||
$graph->Add($vline); | ||||
// ... and display it | ||||
$graph->Stroke(); | $graph->Stroke(); | |||
?> | ?> | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 92 lines changed or added |