Blame view

site/jpgraph/Examples/barline_csimex1.php 1.1 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
  <?php // content="text/plain; charset=utf-8" 
  require_once ('jpgraph/jpgraph.php'); 
  require_once ('jpgraph/jpgraph_line.php'); 
  require_once ('jpgraph/jpgraph_bar.php'); 
  
  $ydata = array(2,3,4,5,6,7,8,9,10,11); 
  $ydata2 = array(1,2,3,4,5,6,7,8,9,10); 
  $targ = array("#1","#2","#3","#4","#5","#6","#7","#8","#9","#10");
  $alt = array(1,2,3,4,5,6,7,8,9,10); 
  
  // Create the graph. 
  $graph = new Graph(300,200);     
  $graph->SetScale("textlin"); 
  $graph->img->SetMargin(40,20,30,40); 
  $graph->title->Set("CSIM example with bar and line"); 
  $graph->title->SetFont(FF_FONT1,FS_BOLD);
  
  // Setup axis titles
  $graph->xaxis->title->Set("X-title"); 
  $graph->yaxis->title->Set("Y-title"); 
  
  // Create the linear plot 
  $lineplot=new LinePlot($ydata); 
  $lineplot->mark->SetType(MARK_FILLEDCIRCLE);
  $lineplot->mark->SetWidth(5);
  $lineplot->mark->SetColor('black');
  $lineplot->mark->SetFillColor('red');
  $lineplot->SetCSIMTargets($targ,$alt);
  
  // Create line plot
  $barplot=new barPlot($ydata2); 
  $barplot->SetCSIMTargets($targ,$alt);
  
  // Add the plots to the graph 
  $graph->Add($lineplot); 
  $graph->Add($barplot); 
  
  $graph->StrokeCSIM();
  
  ?>