Files

20 lines
293 B
PHP
Raw Permalink Normal View History

2012-01-12 11:09:45 +00:00
<?php
$scale_min = 0;
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/common.inc.php';
2012-04-05 16:47:39 +00:00
2012-01-12 11:09:45 +00:00
$graph_max = 1;
2015-07-13 20:10:26 +02:00
$ds = 'NumberOfConnections';
2012-01-12 11:09:45 +00:00
2015-07-13 20:10:26 +02:00
$colour_area = 'B0C4DE';
$colour_line = '191970';
2012-01-12 11:09:45 +00:00
2015-07-13 20:10:26 +02:00
$colour_area_max = 'FFEE99';
2012-01-12 11:09:45 +00:00
2020-09-21 15:40:17 +02:00
$nototal = 1;
2015-07-13 20:10:26 +02:00
$unit_text = 'Conns';
2012-01-12 11:09:45 +00:00
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_simplex.inc.php';