| 1 | <?php | 
|---|
| 2 | require_once ('jpgraph/jpgraph.php'); | 
|---|
| 3 | require_once ('jpgraph/jpgraph_canvas.php'); | 
|---|
| 4 | require_once ('jpgraph/jpgraph_table.php'); | 
|---|
| 5 |  | 
|---|
| 6 | // Setup graph context | 
|---|
| 7 | $graph = new CanvasGraph(430,150); | 
|---|
| 8 |  | 
|---|
| 9 | // Setup the basic table | 
|---|
| 10 | $data = array( | 
|---|
| 11 | array('',        'w631','w632','w633','w634','w635','w636'), | 
|---|
| 12 | array('Critical (sum)',13,17,15,8,3,9), | 
|---|
| 13 | array('High (sum)',34,35,26,20,22,16), | 
|---|
| 14 | array('Low (sum)',41,43,49,45,51,47), | 
|---|
| 15 | array('Sum:',88,95,90,73,76,72), | 
|---|
| 16 | ); | 
|---|
| 17 |  | 
|---|
| 18 | // Setup the basic table and font | 
|---|
| 19 | $table = new GTextTable(); | 
|---|
| 20 | $table->Set($data); | 
|---|
| 21 | $table->SetFont(FF_ARIAL,FS_NORMAL,11); | 
|---|
| 22 |  | 
|---|
| 23 | // Set default minimum color width | 
|---|
| 24 | $table->SetMinColWidth(40); | 
|---|
| 25 |  | 
|---|
| 26 | // Set default table alignment | 
|---|
| 27 | $table->SetAlign('right'); | 
|---|
| 28 |  | 
|---|
| 29 | // Turn off grid | 
|---|
| 30 | $table->setGrid(0); | 
|---|
| 31 |  | 
|---|
| 32 | // Set table border | 
|---|
| 33 | $table->SetBorder(2); | 
|---|
| 34 |  | 
|---|
| 35 | // Setup font | 
|---|
| 36 | $table->SetRowFont(4,FF_ARIAL,FS_BOLD,11); | 
|---|
| 37 | $table->SetRowFont(0,FF_ARIAL,FS_BOLD,11); | 
|---|
| 38 | $table->SetFont(1,2,1,3,FF_ARIAL,FS_BOLD,11); | 
|---|
| 39 |  | 
|---|
| 40 | // Setup grids | 
|---|
| 41 | $table->SetRowGrid(4,2,'black',TGRID_SINGLE); | 
|---|
| 42 | $table->SetColGrid(1,1,'black',TGRID_SINGLE); | 
|---|
| 43 | $table->SetRowGrid(1,1,'black',TGRID_SINGLE); | 
|---|
| 44 |  | 
|---|
| 45 | // Setup colors | 
|---|
| 46 | $table->SetFillColor(0,1,0,6,'black'); | 
|---|
| 47 | $table->SetRowColor(0,'white'); | 
|---|
| 48 | $table->SetRowFillColor(4,'lightgray@0.3'); | 
|---|
| 49 | $table->SetFillColor(2,0,2,6,'lightgray@0.6'); | 
|---|
| 50 | $table->SetFillColor(1,2,1,3,'lightred'); | 
|---|
| 51 |  | 
|---|
| 52 | // Add table to graph | 
|---|
| 53 | $graph->Add($table); | 
|---|
| 54 |  | 
|---|
| 55 | // Send back to the client | 
|---|
| 56 | $graph->Stroke(); | 
|---|
| 57 |  | 
|---|
| 58 | ?> | 
|---|
| 59 |  | 
|---|