Blame view

site/jpgraph/Examples/gradbkgex1.php 1.73 KB
8ec98c9f   Guillaume   MAJ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  <?php // content="text/plain; charset=utf-8"
  require_once ('jpgraph/jpgraph.php');
  require_once ('jpgraph/jpgraph_line.php');
  
  $datay1 = array(4,26,12,18,8,22);
  $datay2 = array(12,9,42,8,20,19);
  
  // Setup the graph
  $graph = new Graph(300,200);
  $graph->clearTheme();
  $graph->SetMarginColor('white');
  $graph->SetScale("textlin",0,50);
  $graph->SetMargin(30,50,30,30);
  
  // We must have the frame enabled to get the gradient
  // However, we don't want the frame line so we set it to
  // white color which makes it invisible.
  $graph->SetFrame(true,'white');
  
  // Setup a background gradient image
  $graph->SetBackgroundGradient('blue','navy:0.5',GRAD_HOR,BGRAD_PLOT);
  
  // Setup the tab title
  $graph->tabtitle->Set(' 3rd Division ' );
  $graph->tabtitle->SetFont(FF_ARIAL,FS_BOLD,13);
  
  // Setup x,Y grid
  $graph->xgrid->Show();
  $graph->xgrid->SetColor('gray@0.5');
  $graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
  $graph->ygrid->SetColor('gray@0.5');
  
  // Setup color for axis and labels on axis
  $graph->xaxis->SetColor('orange','black');
  $graph->yaxis->SetColor('orange','black');
  
  // Ticks on the outsid
  $graph->xaxis->SetTickSide(SIDE_DOWN);
  $graph->yaxis->SetTickSide(SIDE_LEFT);
  
  // Setup the legend box colors and font
  $graph->legend->SetColor('white','navy');
  $graph->legend->SetFillColor('navy@0.25');
  $graph->legend->SetFont(FF_ARIAL,FS_BOLD,8);
  $graph->legend->SetShadow('darkgray@0.4',3);
  $graph->legend->SetPos(0.05,0.05,'right','top');
  
  // Create the first line
  $p1 = new LinePlot($datay1);
  $p1->SetColor("red");
  $p1->SetWeight(2);
  $p1->SetLegend('2002');
  $graph->Add($p1);
  
  // Create the second line
  $p2 = new LinePlot($datay2);
  $p2->SetColor("lightyellow");
  $p2->SetLegend('2001');
  $p2->SetWeight(2);
  $graph->Add($p2);
  
  // Output line
  $graph->Stroke();
  
  ?>