Esempio n. 1
0
<?php

require_once 'jpgraph/jpgraph.php';
require_once 'jpgraph/jpgraph_canvas.php';
require_once 'jpgraph/jpgraph_table.php';
// Create a canvas graph where the table can be added
$graph = new CanvasGraph(70, 60);
// Setup the basic table
$data = array(array(1, 2, 3, 4), array(5, 6, 7, 8));
$table = new GTextTable();
$table->Set($data);
// Merge all cells in row 0
$table->MergeRow(0);
// Adjust font in cell (0,0)
$table->SetCellFont(0, 0, FF_ARIAL, FS_BOLD, 14);
// Set left align for all cells in rectangle (0,0) - (0,3)
$table->SetAlign(0, 0, 0, 3, 'Left');
// Add table to graph
$graph->Add($table);
// ... send it back to the client
$graph->Stroke();
?>

Esempio n. 2
0
// Adjust the font for row 0 and 6
$table->SetColFont(0, FF_ARIAL, FS_BOLD, 11);
$table->SetRowFont(6, FF_TIMES, FS_BOLD, 12);
// Set the minimum heigth/width
$table->SetMinRowHeight(2, 10);
$table->SetMinColWidth(70);
// Add some padding (in pixels)
$table->SetRowPadding(2, 0);
$table->SetRowGrid(6, 1, 'darkgray', TGRID_DOUBLE2);
// Setup the grid
$table->SetGrid(0);
$table->SetRowGrid(6, 1, 'black', TGRID_DOUBLE2);
// Merge all cells in row 0
$table->MergeRow(0);
// Set aligns
$table->SetAlign(3, 0, 6, 6, 'right');
$table->SetRowAlign(1, 'center');
$table->SetRowAlign(2, 'center');
// Set background colors
$table->SetRowFillColor(0, 'lightgray@0.5');
$table->SetColFillColor(0, 'lightgray@0.5');
// Add the country flags in row 1
$n = count($countries);
for ($i = 0; $i < $n; ++$i) {
    $table->SetCellCountryFlag(1, $i + 1, $countries[$i], 0.5);
    $table->SetCellImageConstrain(1, $i + 1, TIMG_HEIGHT, 20);
}
// Add the table to the graph
$graph->Add($table);
// Send back the table graph to the client
$graph->Stroke();
Esempio n. 3
-4
require_once 'jpgraph/jpgraph_table.php';
// Setup graph context
$graph = new CanvasGraph(430, 150);
// Setup the basic table
$data = array(array('', 'w631', 'w632', 'w633', 'w634', 'w635', 'w636'), array('Critical (sum)', 13, 17, 15, 8, 3, 9), array('High (sum)', 34, 35, 26, 20, 22, 16), array('Low (sum)', 41, 43, 49, 45, 51, 47), array('Sum:', 88, 95, 90, 73, 76, 72));
// Setup a basic table
$table = new GTextTable();
$table->Set($data);
// Setup fonts
$table->SetFont(FF_TIMES, FS_NORMAL, 11);
$table->SetColFont(0, FF_ARIAL, FS_NORMAL, 11);
$table->SetRowFont(0, FF_ARIAL, FS_NORMAL, 11);
$table->SetRowFont(4, FF_TIMES, FS_BOLD, 14);
// Turn off the grid
$table->SetGrid(0);
// Setup color
$table->SetRowFillColor(0, 'lightgray@0.5');
$table->SetRowFillColor(4, 'lightgray@0.5');
$table->SetColFillColor(0, 'lightgray@0.5');
$table->SetFillColor(0, 0, 4, 0, 'lightgray@0.5');
// Set default minimum column width
$table->SetMinColWidth(45);
// Set default table alignment
$table->SetAlign('right');
// Add table to the graph
$graph->Add($table);
// and send it back to the client
$graph->Stroke();
?>