Hi, does anyone have got an idea how to show graphs with history of 2 days?
In the include file graphs.inc.php i have added the lines:
The values in the graphs are shown rigth. Also the time span but there is no picture shown. Have anyone an idea what i should do???
Please help, it's very important for me.
In the include file graphs.inc.php i have added the lines:
Code:
function navigation_bar($url)
{
$h2=$h2.form_select("period",2*24*3600,"48h");
...
$h2=$h2.form_select("dec",2*24*3600,"-48h");
...
$h2=$h2.form_select("inc",2*24*3600,"+48h");
...
$h2=$h2.form_select("left",2*24,"-48h");
...
$h2=$h2.form_select("right",2*24,"+48h");
...
$a=array(S_1H=>3600,S_2H=>2*3600,S_4H=>4*3600,S_8H=>8*3600,S_12H=>12*3600,
S_24H=>24*3600,S_48H=>48*3600,S_WEEK_SMALL=>7*24*3600,S_MONTH_SMALL=>31*24*3600,S_YEAR_SMALL=>365*24*3600);
...
$a=array("1h"=>1,"2h"=>2,"4h"=>4,"8h"=>8,"12h"=>12,
"24h"=>24,"48h"=>48,"week"=>7*24,"month"=>31*24,"year"=>365*24);
...
}
Please help, it's very important for me.
Comment