source: trunk/web/addons/job_monarch/lib/pchart/Example23.php @ 647

Last change on this file since 647 was 619, checked in by ramonb, 15 years ago

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 1.7 KB
Line 
1<?php
2 /*
3     Example23 : Playing with background bis
4 */
5
6 // Standard inclusions   
7 include("pChart/pData.class");
8 include("pChart/pChart.class");
9
10 // Dataset definition
11 $DataSet = new pData;
12 $DataSet->AddPoint(array(9,9,9,10,10,11,12,14,16,17,18,18,19,19,18,15,12,10,9),"Serie1");
13 $DataSet->AddPoint(array(10,11,11,12,12,13,14,15,17,19,22,24,23,23,22,20,18,16,14),"Serie2");
14 $DataSet->AddPoint(array(4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22),"Serie3");
15 $DataSet->AddAllSeries();
16 $DataSet->RemoveSerie("Serie3");
17 $DataSet->SetAbsciseLabelSerie("Serie3");
18 $DataSet->SetSerieName("January","Serie1");
19 $DataSet->SetSerieName("February","Serie2");
20 $DataSet->SetYAxisName("Temperature");
21 $DataSet->SetYAxisUnit("°C");
22 $DataSet->SetXAxisUnit("h");
23
24 // Initialise the graph
25 $Test = new pChart(700,230);
26 $Test->drawGraphAreaGradient(132,173,131,50,TARGET_BACKGROUND);
27
28 $Test->setFontProperties("Fonts/tahoma.ttf",8);
29 $Test->setGraphArea(120,20,675,190);
30 $Test->drawGraphArea(213,217,221,FALSE);
31 $Test->drawScale($DataSet->GetData(),$DataSet->GetDataDescription(),SCALE_ADDALL,213,217,221,TRUE,0,2,TRUE);
32 $Test->drawGraphAreaGradient(163,203,167,50);
33 $Test->drawGrid(4,TRUE,230,230,230,20);
34
35 // Draw the bar chart
36 $Test->drawStackedBarGraph($DataSet->GetData(),$DataSet->GetDataDescription(),70);
37
38 // Draw the title
39 $Title = "  Average Temperatures during\r\n  the first months of 2008  ";
40 $Test->drawTextBox(0,0,50,230,$Title,90,255,255,255,ALIGN_BOTTOM_CENTER,TRUE,0,0,0,30);
41
42 // Draw the legend
43 $Test->setFontProperties("Fonts/tahoma.ttf",8);
44 $Test->drawLegend(610,10,$DataSet->GetDataDescription(),236,238,240,52,58,82);
45
46 // Render the picture
47 $Test->addBorder(2);
48 $Test->Render("example23.png");
49?>
Note: See TracBrowser for help on using the repository browser.