Blame view

site/jpgraph/Examples/manualtickex1a.php 1.92 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
66
67
68
69
70
71
72
  <?php // content="text/plain; charset=utf-8"
  //
  // Basic example on how to use custom tickmark feature to have a label
  // at the start of each month.
  //
  require_once ('jpgraph/jpgraph.php');
  require_once ('jpgraph/jpgraph_line.php');
  require_once ('jpgraph/jpgraph_utils.inc.php');
  
  //
  // Create some random data for the plot. We use the current time for the
  // first X-position
  //
  $datay = array();
  $datax = array();
  $ts = time();
  $n=15; // Number of data points
  for($i=0; $i < $n; ++$i ) {
      $datax[$i] = $ts+$i*700000;
      $datay[$i] = rand(5,60);
  }
  
  // Now get labels at the start of each month
  $dateUtils = new DateScaleUtils();
  list($tickPositions,$minTickPositions) = $dateUtils->GetTicks($datax);
  
  // We add some grace to the end of the X-axis scale so that the first and last
  // data point isn't exactly at the very end or beginning of the scale
  $grace = 400000;
  $xmin = $datax[0]-$grace;
  $xmax = $datax[$n-1]+$grace;
  
  //
  // The code to setup a very basic graph
  //
  $graph = new Graph(400,200);
  $graph->clearTheme();
  
  //
  // We use an integer scale on the X-axis since the positions on the X axis
  // are assumed to be UNI timestamps
  $graph->SetScale('intlin',0,0,$xmin,$xmax);
  $graph->title->Set('Basic example with manual ticks');
  $graph->title->SetFont(FF_ARIAL,FS_NORMAL,12);
  
  //
  // Make sure that the X-axis is always at the bottom of the scale
  // (By default the X-axis is alwys positioned at Y=0 so if the scale
  // doesn't happen to include 0 the axis will not be shown)
  $graph->xaxis->SetPos('min');
  
  // Now set the tic positions
  $graph->xaxis->SetTickPositions($tickPositions,$minTickPositions);
  
  // The labels should be formatted at dates with "Year-month"
  $graph->xaxis->SetLabelFormatString('My',true);
  
  // Use Ariel font
  $graph->xaxis->SetFont(FF_ARIAL,FS_NORMAL,9);
  
  // Add a X-grid
  $graph->xgrid->Show();
  
  // Create the plot line
  $p1 = new LinePlot($datay,$datax);
  $p1->SetColor('teal');
  $graph->Add($p1);
  
  // Output graph
  $graph->Stroke();
  
  ?>