stockex2.php
925 Bytes
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
<?php // content="text/plain; charset=utf-8"
// $Id: stockex2.php,v 1.1 2003/01/31 17:41:29 aditus Exp $
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_stock.php');
$datay = array(
34,42,27,45,
55,25,12,59,
38,49,32,64,
34,40,29,42,
40,29,22,45 );
// Setup basic graph
$graph = new Graph(300,200);
$graph->SetScale("textlin");
$graph->SetMarginColor('white');
$graph->SetFrame(false);
$graph->ygrid->SetFill(true,'#EFEFEF@0.5','#BBCCFF@0.5');
$graph->SetBox();
$graph->tabtitle->Set(' Week 34 ');
$graph->tabtitle->SetFont(FF_ARIAL,FS_NORMAL,12);
// Get week days in curent locale
$days = $gDateLocale->GetShortDay();
array_shift($days); // Start on monday
$graph->xaxis->SetTickLabels($days);
// Create stock plot
$p1 = new StockPlot($datay);
// Indent plot so first and last bar isn't on the edges
$p1->SetCenter();
// Add and stroke
$graph->Add($p1);
$graph->Stroke();
?>