2007-04-03 14:10:23 +00:00
|
|
|
<?php
|
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
$graph_array['type'] = $graph_type;
|
|
|
|
$graph_array['id'] = $device['device_id'];
|
2010-02-08 00:36:28 +00:00
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
$g_i++;
|
2011-03-16 18:28:52 +00:00
|
|
|
if (!is_integer($g_i/2)) { $row_colour = $list_colour_a; } else { $row_colour = $list_colour_b; }
|
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
echo('<div style="background-color: '.$row_colour.';">');
|
|
|
|
echo('<div style="padding:4px 0px 0px 8px;" class=graphhead>'.$graph_title.'</div>');
|
2011-03-16 18:28:52 +00:00
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
include("includes/print-quadgraphs.inc.php");
|
2011-03-16 18:28:52 +00:00
|
|
|
|
|
|
|
echo('</div>');
|
2010-02-08 00:36:28 +00:00
|
|
|
|
2007-04-03 14:10:23 +00:00
|
|
|
?>
|
|
|
|
|