HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux Bradford-Sitios 6.14.0-1017-azure #17~24.04.1-Ubuntu SMP Mon Dec 1 20:10:50 UTC 2025 x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/gestor-horarios.bradford/app/libraries/jpgraph/src/Examples/matrix_edgeex01.php
<?php // content="text/plain; charset=utf-8"
require_once('jpgraph/jpgraph.php');
require_once('jpgraph/jpgraph_matrix.php');

$data = array(
	array(0,null,2,3,4,5,6,7,8,9,10,8,6,4,2),
	array(10,9,8,7,6,5,4,3,2,1,0,8,5,9,2),
	array(0,1,2,3,4,5,6,7,8,9,10,2,4,5,7),
	array(10,9,8,17,6,5,4,3,2,1,0,8,6,4,2),
	array(0,1,2,3,4,4,9,7,8,9,10,3,2,7,2),
	array(8,1,2,3,4,8,3,7,8,9,10,5,3,9,1),
	array(10,3,5,7,6,5,4,3,12,1,0,6,5,10,2),
	array(10,9,8,7,6,5,4,3,2,1,NULL,8,6,4,2),
);

for($i=0; $i < count($data[0]); ++$i ) {
    $xlabels[$i] = sprintf('xlabel: %02d',$i);
}
for($i=0; $i < count($data); ++$i ) {
    $ylabels[$i] = sprintf('ylabel: %02d',$i);
}

// Setup a nasic matrix graph
$graph = new MatrixGraph(400,250);
$graph->SetMarginColor('white');
$graph->title->Set('Adding labels on the edges');
$graph->title->SetFont(FF_ARIAL,FS_BOLD,14);

// Create one matrix plot
$mp = new MatrixPlot($data,1);
$mp->SetModuleSize(13,15);
$mp->SetCenterPos(0.35,0.45);
$mp->colormap->SetNullColor('gray');

// Setup column lablels
$mp->collabel->Set($xlabels);
$mp->collabel->SetSide('bottom');
$mp->collabel->SetFont(FF_ARIAL,FS_NORMAL,8);
$mp->collabel->SetFontColor('darkgray');

// Setup row lablels
$mp->rowlabel->Set($ylabels);
$mp->rowlabel->SetSide('right');
$mp->rowlabel->SetFont(FF_ARIAL,FS_NORMAL,8);
$mp->rowlabel->SetFontColor('darkgray');

// Move the legend more to the right
$mp->legend->SetMargin(90);

$graph->Add($mp);
$graph->Stroke();

?>