3v4l.org

run code in 300+ PHP versions simultaneously
<?php $scandir = scandir('c:/keycounter'); $stats = array(); foreach($scandir as $filename){ if(substr($filename, -4) !== '.day') continue; $date = substr($filename, 0, -4); $stats[$date]= array('k' => 0, 'm' => 0); $content = file_get_contents('c:/keycounter/'.$filename); $lines = explode("\n", $content); foreach($lines as $line){ if($line === '') { continue; } $exp2 = explode(",", $line); $stats[$date]['k']+=intval($exp2[0]); $stats[$date]['m']+=intval($exp2[1]); } } $kplot = array(); $mplot = array(); foreach($stats as $date => $stat){ $kplot[$date] = $stat['k']; $mplot[$date] = $stat['m']; } function time_flot($data){ ksort($data); $rand = md5(rand(100000,10000000)); $dt = ''; foreach ($data as $key => $val) { $dt.='[' . date('U', strtotime($key)) * 1000 .','. $val . '],'; } ob_start(); ?> <div id="flot-<?php echo $rand ?>" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = [<?php echo $dt ?>]; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-<?php echo $rand ?>-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-<?php echo $rand ?>", [d], options); $("#flot-<?php echo $rand ?>").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-<?php echo $rand ?>-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-<?php echo $rand ?>-tooltip").hide(); } }); // now connect the two }); </script> <?php $str = ob_get_contents(); ob_end_clean(); return $str; } ?> <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> <?php echo 'avg_k: ' . intval(array_sum($kplot) / count($kplot)) . '<br/>'; ?> <div class="plot" style="width: 1500px; height: 400px;"> <?php echo time_flot($kplot);?> </div> <br/> <?php echo 'avg_m: ' . intval(array_sum($mplot) / count($mplot)) . '<br/>'; ?> <div class="plot" style="width: 1500px; height: 400px;"> <?php echo time_flot($mplot);?> </div>

Abusive script

This script was stopped while abusing our resources

Output for 8.0.0 - 8.0.12
Warning: scandir(c:/keycounter): Failed to open directory: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: foreach() argument must be of type array|object, bool given in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Fatal error: Uncaught DivisionByZeroError: Division by zero in /in/nvWnR:119 Stack trace: #0 {main} thrown in /in/nvWnR on line 119
Process exited with code 255.
Output for 7.4.25
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c6643cc83725477a047f8c8a1e8a5444" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c6643cc83725477a047f8c8a1e8a5444-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c6643cc83725477a047f8c8a1e8a5444", [d], options); $("#flot-c6643cc83725477a047f8c8a1e8a5444").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c6643cc83725477a047f8c8a1e8a5444-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c6643cc83725477a047f8c8a1e8a5444-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-22899baf4646f4c9184c552e8eb5ef28" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-22899baf4646f4c9184c552e8eb5ef28-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-22899baf4646f4c9184c552e8eb5ef28", [d], options); $("#flot-22899baf4646f4c9184c552e8eb5ef28").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-22899baf4646f4c9184c552e8eb5ef28-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-22899baf4646f4c9184c552e8eb5ef28-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.24
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3adcc5855e275c8b6fdb22dea3d52abd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3adcc5855e275c8b6fdb22dea3d52abd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3adcc5855e275c8b6fdb22dea3d52abd", [d], options); $("#flot-3adcc5855e275c8b6fdb22dea3d52abd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3adcc5855e275c8b6fdb22dea3d52abd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3adcc5855e275c8b6fdb22dea3d52abd-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f0608ad4215027646839f28960795c84" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f0608ad4215027646839f28960795c84-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f0608ad4215027646839f28960795c84", [d], options); $("#flot-f0608ad4215027646839f28960795c84").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f0608ad4215027646839f28960795c84-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f0608ad4215027646839f28960795c84-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.23
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0612a7226cd72d0f1fc1282f913d54fd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0612a7226cd72d0f1fc1282f913d54fd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0612a7226cd72d0f1fc1282f913d54fd", [d], options); $("#flot-0612a7226cd72d0f1fc1282f913d54fd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0612a7226cd72d0f1fc1282f913d54fd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0612a7226cd72d0f1fc1282f913d54fd-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-84a7849d1681bfa888381004a2525bcd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-84a7849d1681bfa888381004a2525bcd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-84a7849d1681bfa888381004a2525bcd", [d], options); $("#flot-84a7849d1681bfa888381004a2525bcd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-84a7849d1681bfa888381004a2525bcd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-84a7849d1681bfa888381004a2525bcd-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.22
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-aa7bab5803c97fe32aff37c52c78f9d3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-aa7bab5803c97fe32aff37c52c78f9d3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-aa7bab5803c97fe32aff37c52c78f9d3", [d], options); $("#flot-aa7bab5803c97fe32aff37c52c78f9d3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-aa7bab5803c97fe32aff37c52c78f9d3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-aa7bab5803c97fe32aff37c52c78f9d3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9a79806d958cd59274cc9ef528e6ce93" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9a79806d958cd59274cc9ef528e6ce93-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9a79806d958cd59274cc9ef528e6ce93", [d], options); $("#flot-9a79806d958cd59274cc9ef528e6ce93").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9a79806d958cd59274cc9ef528e6ce93-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9a79806d958cd59274cc9ef528e6ce93-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.21
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1e190cb715baec969bc9ae9a66eec0e0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1e190cb715baec969bc9ae9a66eec0e0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1e190cb715baec969bc9ae9a66eec0e0", [d], options); $("#flot-1e190cb715baec969bc9ae9a66eec0e0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1e190cb715baec969bc9ae9a66eec0e0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1e190cb715baec969bc9ae9a66eec0e0-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c9f0975fe33a90e0d54e2b604dabf181" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c9f0975fe33a90e0d54e2b604dabf181-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c9f0975fe33a90e0d54e2b604dabf181", [d], options); $("#flot-c9f0975fe33a90e0d54e2b604dabf181").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c9f0975fe33a90e0d54e2b604dabf181-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c9f0975fe33a90e0d54e2b604dabf181-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.20
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3b0bfa37efb9f601c395b824d7103fe3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3b0bfa37efb9f601c395b824d7103fe3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3b0bfa37efb9f601c395b824d7103fe3", [d], options); $("#flot-3b0bfa37efb9f601c395b824d7103fe3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3b0bfa37efb9f601c395b824d7103fe3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3b0bfa37efb9f601c395b824d7103fe3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6ebea96e7a15ccd518e89a04bc307a8e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6ebea96e7a15ccd518e89a04bc307a8e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6ebea96e7a15ccd518e89a04bc307a8e", [d], options); $("#flot-6ebea96e7a15ccd518e89a04bc307a8e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6ebea96e7a15ccd518e89a04bc307a8e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6ebea96e7a15ccd518e89a04bc307a8e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.19
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-fa50640b5b9b6b17a968f54f2a44b77b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-fa50640b5b9b6b17a968f54f2a44b77b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-fa50640b5b9b6b17a968f54f2a44b77b", [d], options); $("#flot-fa50640b5b9b6b17a968f54f2a44b77b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-fa50640b5b9b6b17a968f54f2a44b77b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-fa50640b5b9b6b17a968f54f2a44b77b-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b228b79774ce23e6c33939394aa9d955" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b228b79774ce23e6c33939394aa9d955-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b228b79774ce23e6c33939394aa9d955", [d], options); $("#flot-b228b79774ce23e6c33939394aa9d955").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b228b79774ce23e6c33939394aa9d955-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b228b79774ce23e6c33939394aa9d955-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.18
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0e3520dcf3c7581640b3f7f9808d1dc5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0e3520dcf3c7581640b3f7f9808d1dc5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0e3520dcf3c7581640b3f7f9808d1dc5", [d], options); $("#flot-0e3520dcf3c7581640b3f7f9808d1dc5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0e3520dcf3c7581640b3f7f9808d1dc5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0e3520dcf3c7581640b3f7f9808d1dc5-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-48c0a1e69072e5310ff7091574743f9a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-48c0a1e69072e5310ff7091574743f9a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-48c0a1e69072e5310ff7091574743f9a", [d], options); $("#flot-48c0a1e69072e5310ff7091574743f9a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-48c0a1e69072e5310ff7091574743f9a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-48c0a1e69072e5310ff7091574743f9a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.16
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b2032b366584ed8d5d2cedc825d6bd12" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b2032b366584ed8d5d2cedc825d6bd12-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b2032b366584ed8d5d2cedc825d6bd12", [d], options); $("#flot-b2032b366584ed8d5d2cedc825d6bd12").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b2032b366584ed8d5d2cedc825d6bd12-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b2032b366584ed8d5d2cedc825d6bd12-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6041b773f66e86b71a370241c622d19f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6041b773f66e86b71a370241c622d19f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6041b773f66e86b71a370241c622d19f", [d], options); $("#flot-6041b773f66e86b71a370241c622d19f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6041b773f66e86b71a370241c622d19f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6041b773f66e86b71a370241c622d19f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.15
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1ba8c72bcb7665baf1b3816deaf7504e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1ba8c72bcb7665baf1b3816deaf7504e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1ba8c72bcb7665baf1b3816deaf7504e", [d], options); $("#flot-1ba8c72bcb7665baf1b3816deaf7504e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1ba8c72bcb7665baf1b3816deaf7504e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1ba8c72bcb7665baf1b3816deaf7504e-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-31a3dddb1baf5461479a2c7b41831648" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-31a3dddb1baf5461479a2c7b41831648-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-31a3dddb1baf5461479a2c7b41831648", [d], options); $("#flot-31a3dddb1baf5461479a2c7b41831648").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-31a3dddb1baf5461479a2c7b41831648-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-31a3dddb1baf5461479a2c7b41831648-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.14
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f676581a228fe8cb8eed40b5e9cad268" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f676581a228fe8cb8eed40b5e9cad268-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f676581a228fe8cb8eed40b5e9cad268", [d], options); $("#flot-f676581a228fe8cb8eed40b5e9cad268").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f676581a228fe8cb8eed40b5e9cad268-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f676581a228fe8cb8eed40b5e9cad268-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1fe4cfc6aa8b8d737bb682b4d6c1ae25" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1fe4cfc6aa8b8d737bb682b4d6c1ae25-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1fe4cfc6aa8b8d737bb682b4d6c1ae25", [d], options); $("#flot-1fe4cfc6aa8b8d737bb682b4d6c1ae25").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1fe4cfc6aa8b8d737bb682b4d6c1ae25-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1fe4cfc6aa8b8d737bb682b4d6c1ae25-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.13
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f4b4875731f1ba2520fea1276cf6c631" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f4b4875731f1ba2520fea1276cf6c631-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f4b4875731f1ba2520fea1276cf6c631", [d], options); $("#flot-f4b4875731f1ba2520fea1276cf6c631").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f4b4875731f1ba2520fea1276cf6c631-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f4b4875731f1ba2520fea1276cf6c631-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-93b137573a0e6c52ea49a27aa5a580fd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-93b137573a0e6c52ea49a27aa5a580fd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-93b137573a0e6c52ea49a27aa5a580fd", [d], options); $("#flot-93b137573a0e6c52ea49a27aa5a580fd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-93b137573a0e6c52ea49a27aa5a580fd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-93b137573a0e6c52ea49a27aa5a580fd-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.12
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f70a8bb3a67640178ef08a92e35f0113" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f70a8bb3a67640178ef08a92e35f0113-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f70a8bb3a67640178ef08a92e35f0113", [d], options); $("#flot-f70a8bb3a67640178ef08a92e35f0113").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f70a8bb3a67640178ef08a92e35f0113-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f70a8bb3a67640178ef08a92e35f0113-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-de8e8572ab2adba964acb6b536642d14" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-de8e8572ab2adba964acb6b536642d14-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-de8e8572ab2adba964acb6b536642d14", [d], options); $("#flot-de8e8572ab2adba964acb6b536642d14").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-de8e8572ab2adba964acb6b536642d14-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-de8e8572ab2adba964acb6b536642d14-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.11
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d1953a03ace15d8c7dda1a77ff1125e3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d1953a03ace15d8c7dda1a77ff1125e3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d1953a03ace15d8c7dda1a77ff1125e3", [d], options); $("#flot-d1953a03ace15d8c7dda1a77ff1125e3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d1953a03ace15d8c7dda1a77ff1125e3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d1953a03ace15d8c7dda1a77ff1125e3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cc392e3e87701f13bf6ab5d59497c90a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cc392e3e87701f13bf6ab5d59497c90a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cc392e3e87701f13bf6ab5d59497c90a", [d], options); $("#flot-cc392e3e87701f13bf6ab5d59497c90a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cc392e3e87701f13bf6ab5d59497c90a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cc392e3e87701f13bf6ab5d59497c90a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.10
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-11f644fc70ec59186b6264c14244efe6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-11f644fc70ec59186b6264c14244efe6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-11f644fc70ec59186b6264c14244efe6", [d], options); $("#flot-11f644fc70ec59186b6264c14244efe6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-11f644fc70ec59186b6264c14244efe6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-11f644fc70ec59186b6264c14244efe6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4daec69325c3370ec69a2bb1bb69a1ac" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4daec69325c3370ec69a2bb1bb69a1ac-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4daec69325c3370ec69a2bb1bb69a1ac", [d], options); $("#flot-4daec69325c3370ec69a2bb1bb69a1ac").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4daec69325c3370ec69a2bb1bb69a1ac-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4daec69325c3370ec69a2bb1bb69a1ac-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.9
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8b0fde03fa6e67ca820cb7b7e6e173e0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8b0fde03fa6e67ca820cb7b7e6e173e0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8b0fde03fa6e67ca820cb7b7e6e173e0", [d], options); $("#flot-8b0fde03fa6e67ca820cb7b7e6e173e0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8b0fde03fa6e67ca820cb7b7e6e173e0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8b0fde03fa6e67ca820cb7b7e6e173e0-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1bab977de9fe7fb4fe913db0f5698ecb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1bab977de9fe7fb4fe913db0f5698ecb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1bab977de9fe7fb4fe913db0f5698ecb", [d], options); $("#flot-1bab977de9fe7fb4fe913db0f5698ecb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1bab977de9fe7fb4fe913db0f5698ecb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1bab977de9fe7fb4fe913db0f5698ecb-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.8
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5cf01a7d40b326304524b5dc152d5a32" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5cf01a7d40b326304524b5dc152d5a32-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5cf01a7d40b326304524b5dc152d5a32", [d], options); $("#flot-5cf01a7d40b326304524b5dc152d5a32").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5cf01a7d40b326304524b5dc152d5a32-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5cf01a7d40b326304524b5dc152d5a32-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-86859a070c2b4b79231c28fab9c3f516" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-86859a070c2b4b79231c28fab9c3f516-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-86859a070c2b4b79231c28fab9c3f516", [d], options); $("#flot-86859a070c2b4b79231c28fab9c3f516").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-86859a070c2b4b79231c28fab9c3f516-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-86859a070c2b4b79231c28fab9c3f516-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.7
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8f83d609cf8351a1aeb648e8ab1e099b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8f83d609cf8351a1aeb648e8ab1e099b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8f83d609cf8351a1aeb648e8ab1e099b", [d], options); $("#flot-8f83d609cf8351a1aeb648e8ab1e099b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8f83d609cf8351a1aeb648e8ab1e099b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8f83d609cf8351a1aeb648e8ab1e099b-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-84273d6999002f082d443514b6fed9ea" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-84273d6999002f082d443514b6fed9ea-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-84273d6999002f082d443514b6fed9ea", [d], options); $("#flot-84273d6999002f082d443514b6fed9ea").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-84273d6999002f082d443514b6fed9ea-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-84273d6999002f082d443514b6fed9ea-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.6
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f78950b4459be19496d5c4db2fa54584" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f78950b4459be19496d5c4db2fa54584-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f78950b4459be19496d5c4db2fa54584", [d], options); $("#flot-f78950b4459be19496d5c4db2fa54584").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f78950b4459be19496d5c4db2fa54584-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f78950b4459be19496d5c4db2fa54584-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-02a688586d20141a26369c3b17eaf0ab" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-02a688586d20141a26369c3b17eaf0ab-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-02a688586d20141a26369c3b17eaf0ab", [d], options); $("#flot-02a688586d20141a26369c3b17eaf0ab").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-02a688586d20141a26369c3b17eaf0ab-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-02a688586d20141a26369c3b17eaf0ab-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.5
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1c411ce8ae70c19e8e46607e1e132b08" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1c411ce8ae70c19e8e46607e1e132b08-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1c411ce8ae70c19e8e46607e1e132b08", [d], options); $("#flot-1c411ce8ae70c19e8e46607e1e132b08").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1c411ce8ae70c19e8e46607e1e132b08-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1c411ce8ae70c19e8e46607e1e132b08-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ba0de5da4fe45401aab9dec6e377e978" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ba0de5da4fe45401aab9dec6e377e978-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ba0de5da4fe45401aab9dec6e377e978", [d], options); $("#flot-ba0de5da4fe45401aab9dec6e377e978").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ba0de5da4fe45401aab9dec6e377e978-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ba0de5da4fe45401aab9dec6e377e978-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.4
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3c40693f3b9de8905af1552fbd479eea" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3c40693f3b9de8905af1552fbd479eea-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3c40693f3b9de8905af1552fbd479eea", [d], options); $("#flot-3c40693f3b9de8905af1552fbd479eea").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3c40693f3b9de8905af1552fbd479eea-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3c40693f3b9de8905af1552fbd479eea-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ef654dddbe6db6a8d66149ff71191b49" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ef654dddbe6db6a8d66149ff71191b49-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ef654dddbe6db6a8d66149ff71191b49", [d], options); $("#flot-ef654dddbe6db6a8d66149ff71191b49").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ef654dddbe6db6a8d66149ff71191b49-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ef654dddbe6db6a8d66149ff71191b49-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.3
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8285f0f601fa41caf77a0f7ab7e2a077" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8285f0f601fa41caf77a0f7ab7e2a077-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8285f0f601fa41caf77a0f7ab7e2a077", [d], options); $("#flot-8285f0f601fa41caf77a0f7ab7e2a077").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8285f0f601fa41caf77a0f7ab7e2a077-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8285f0f601fa41caf77a0f7ab7e2a077-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-90a4d8df3d240f80fcec8aa7f65c1c04" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-90a4d8df3d240f80fcec8aa7f65c1c04-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-90a4d8df3d240f80fcec8aa7f65c1c04", [d], options); $("#flot-90a4d8df3d240f80fcec8aa7f65c1c04").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-90a4d8df3d240f80fcec8aa7f65c1c04-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-90a4d8df3d240f80fcec8aa7f65c1c04-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.2
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5d703d3585b896a98f7d7dc7bc7ba455" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5d703d3585b896a98f7d7dc7bc7ba455-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5d703d3585b896a98f7d7dc7bc7ba455", [d], options); $("#flot-5d703d3585b896a98f7d7dc7bc7ba455").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5d703d3585b896a98f7d7dc7bc7ba455-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5d703d3585b896a98f7d7dc7bc7ba455-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-879e0375f58708d5065b56a432a28afc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-879e0375f58708d5065b56a432a28afc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-879e0375f58708d5065b56a432a28afc", [d], options); $("#flot-879e0375f58708d5065b56a432a28afc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-879e0375f58708d5065b56a432a28afc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-879e0375f58708d5065b56a432a28afc-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.1
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-69f3448d3e59586f1e6101e92d265f8f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-69f3448d3e59586f1e6101e92d265f8f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-69f3448d3e59586f1e6101e92d265f8f", [d], options); $("#flot-69f3448d3e59586f1e6101e92d265f8f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-69f3448d3e59586f1e6101e92d265f8f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-69f3448d3e59586f1e6101e92d265f8f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-31f9b7582172d91b998aecc8bba795ad" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-31f9b7582172d91b998aecc8bba795ad-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-31f9b7582172d91b998aecc8bba795ad", [d], options); $("#flot-31f9b7582172d91b998aecc8bba795ad").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-31f9b7582172d91b998aecc8bba795ad-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-31f9b7582172d91b998aecc8bba795ad-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.4.0
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dc8233ecbff43265a82777dd7fb01eab" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dc8233ecbff43265a82777dd7fb01eab-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dc8233ecbff43265a82777dd7fb01eab", [d], options); $("#flot-dc8233ecbff43265a82777dd7fb01eab").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dc8233ecbff43265a82777dd7fb01eab-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dc8233ecbff43265a82777dd7fb01eab-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7603bcbb26a7578009ee64c51c55489f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7603bcbb26a7578009ee64c51c55489f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7603bcbb26a7578009ee64c51c55489f", [d], options); $("#flot-7603bcbb26a7578009ee64c51c55489f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7603bcbb26a7578009ee64c51c55489f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7603bcbb26a7578009ee64c51c55489f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.31
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f5005b29fefee1a89d54cfc74fe759aa" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f5005b29fefee1a89d54cfc74fe759aa-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f5005b29fefee1a89d54cfc74fe759aa", [d], options); $("#flot-f5005b29fefee1a89d54cfc74fe759aa").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f5005b29fefee1a89d54cfc74fe759aa-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f5005b29fefee1a89d54cfc74fe759aa-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-46abb76b4b9b5cc291cf03b98ded5f26" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-46abb76b4b9b5cc291cf03b98ded5f26-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-46abb76b4b9b5cc291cf03b98ded5f26", [d], options); $("#flot-46abb76b4b9b5cc291cf03b98ded5f26").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-46abb76b4b9b5cc291cf03b98ded5f26-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-46abb76b4b9b5cc291cf03b98ded5f26-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.30
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ffb7854f8635dd55308ada873749f86f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ffb7854f8635dd55308ada873749f86f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ffb7854f8635dd55308ada873749f86f", [d], options); $("#flot-ffb7854f8635dd55308ada873749f86f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ffb7854f8635dd55308ada873749f86f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ffb7854f8635dd55308ada873749f86f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b1145e787a3384a4a382df61199e42ce" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b1145e787a3384a4a382df61199e42ce-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b1145e787a3384a4a382df61199e42ce", [d], options); $("#flot-b1145e787a3384a4a382df61199e42ce").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b1145e787a3384a4a382df61199e42ce-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b1145e787a3384a4a382df61199e42ce-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.29
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bb881acd5fa0901fc327210c52494d78" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bb881acd5fa0901fc327210c52494d78-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bb881acd5fa0901fc327210c52494d78", [d], options); $("#flot-bb881acd5fa0901fc327210c52494d78").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bb881acd5fa0901fc327210c52494d78-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bb881acd5fa0901fc327210c52494d78-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0bd6f374479f5b490fc0617e130a1ae2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0bd6f374479f5b490fc0617e130a1ae2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0bd6f374479f5b490fc0617e130a1ae2", [d], options); $("#flot-0bd6f374479f5b490fc0617e130a1ae2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0bd6f374479f5b490fc0617e130a1ae2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0bd6f374479f5b490fc0617e130a1ae2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.28
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f478dc0e4c4fdd681a014f6a44cfe308" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f478dc0e4c4fdd681a014f6a44cfe308-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f478dc0e4c4fdd681a014f6a44cfe308", [d], options); $("#flot-f478dc0e4c4fdd681a014f6a44cfe308").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f478dc0e4c4fdd681a014f6a44cfe308-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f478dc0e4c4fdd681a014f6a44cfe308-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d1c144ec30c649634af52dcd8811d675" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d1c144ec30c649634af52dcd8811d675-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d1c144ec30c649634af52dcd8811d675", [d], options); $("#flot-d1c144ec30c649634af52dcd8811d675").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d1c144ec30c649634af52dcd8811d675-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d1c144ec30c649634af52dcd8811d675-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.27
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5e0ab1cec7cd15bf19195fc018fd8e02" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5e0ab1cec7cd15bf19195fc018fd8e02-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5e0ab1cec7cd15bf19195fc018fd8e02", [d], options); $("#flot-5e0ab1cec7cd15bf19195fc018fd8e02").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5e0ab1cec7cd15bf19195fc018fd8e02-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5e0ab1cec7cd15bf19195fc018fd8e02-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-496cfab4ad9377387ce0a2a1d5bd04e8" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-496cfab4ad9377387ce0a2a1d5bd04e8-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-496cfab4ad9377387ce0a2a1d5bd04e8", [d], options); $("#flot-496cfab4ad9377387ce0a2a1d5bd04e8").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-496cfab4ad9377387ce0a2a1d5bd04e8-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-496cfab4ad9377387ce0a2a1d5bd04e8-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.26
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-08983218debbd7ca1287506cd9bc2ea7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-08983218debbd7ca1287506cd9bc2ea7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-08983218debbd7ca1287506cd9bc2ea7", [d], options); $("#flot-08983218debbd7ca1287506cd9bc2ea7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-08983218debbd7ca1287506cd9bc2ea7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-08983218debbd7ca1287506cd9bc2ea7-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-720572f9c1443fca1350ae6e397baea2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-720572f9c1443fca1350ae6e397baea2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-720572f9c1443fca1350ae6e397baea2", [d], options); $("#flot-720572f9c1443fca1350ae6e397baea2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-720572f9c1443fca1350ae6e397baea2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-720572f9c1443fca1350ae6e397baea2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.25
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-833e35adf58219245271d600cb932654" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-833e35adf58219245271d600cb932654-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-833e35adf58219245271d600cb932654", [d], options); $("#flot-833e35adf58219245271d600cb932654").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-833e35adf58219245271d600cb932654-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-833e35adf58219245271d600cb932654-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3e63c5c2cb790d8858243e55f6bd7bbf" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3e63c5c2cb790d8858243e55f6bd7bbf-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3e63c5c2cb790d8858243e55f6bd7bbf", [d], options); $("#flot-3e63c5c2cb790d8858243e55f6bd7bbf").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3e63c5c2cb790d8858243e55f6bd7bbf-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3e63c5c2cb790d8858243e55f6bd7bbf-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.24
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c5d00ae0bc5cc41dad282b2b381ff071" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c5d00ae0bc5cc41dad282b2b381ff071-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c5d00ae0bc5cc41dad282b2b381ff071", [d], options); $("#flot-c5d00ae0bc5cc41dad282b2b381ff071").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c5d00ae0bc5cc41dad282b2b381ff071-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c5d00ae0bc5cc41dad282b2b381ff071-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-beca68ad14aaef611286b4e0a7c814bd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-beca68ad14aaef611286b4e0a7c814bd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-beca68ad14aaef611286b4e0a7c814bd", [d], options); $("#flot-beca68ad14aaef611286b4e0a7c814bd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-beca68ad14aaef611286b4e0a7c814bd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-beca68ad14aaef611286b4e0a7c814bd-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.23
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c595939c7ab59f05aa6c0af32ddb2595" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c595939c7ab59f05aa6c0af32ddb2595-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c595939c7ab59f05aa6c0af32ddb2595", [d], options); $("#flot-c595939c7ab59f05aa6c0af32ddb2595").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c595939c7ab59f05aa6c0af32ddb2595-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c595939c7ab59f05aa6c0af32ddb2595-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e50c4a98588ba687f044dc8efdee1b8d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e50c4a98588ba687f044dc8efdee1b8d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e50c4a98588ba687f044dc8efdee1b8d", [d], options); $("#flot-e50c4a98588ba687f044dc8efdee1b8d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e50c4a98588ba687f044dc8efdee1b8d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e50c4a98588ba687f044dc8efdee1b8d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.22
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-00a1ca6b7fa1898f35d837d886d1b25e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-00a1ca6b7fa1898f35d837d886d1b25e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-00a1ca6b7fa1898f35d837d886d1b25e", [d], options); $("#flot-00a1ca6b7fa1898f35d837d886d1b25e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-00a1ca6b7fa1898f35d837d886d1b25e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-00a1ca6b7fa1898f35d837d886d1b25e-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bfb2c9d9ccc49472450ad0f3fec1fcb5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bfb2c9d9ccc49472450ad0f3fec1fcb5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bfb2c9d9ccc49472450ad0f3fec1fcb5", [d], options); $("#flot-bfb2c9d9ccc49472450ad0f3fec1fcb5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bfb2c9d9ccc49472450ad0f3fec1fcb5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bfb2c9d9ccc49472450ad0f3fec1fcb5-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.21
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-279cc2de574ed4fe36039b5544449bc9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-279cc2de574ed4fe36039b5544449bc9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-279cc2de574ed4fe36039b5544449bc9", [d], options); $("#flot-279cc2de574ed4fe36039b5544449bc9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-279cc2de574ed4fe36039b5544449bc9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-279cc2de574ed4fe36039b5544449bc9-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cb9c0316399ef892a872c6871d1b4fed" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cb9c0316399ef892a872c6871d1b4fed-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cb9c0316399ef892a872c6871d1b4fed", [d], options); $("#flot-cb9c0316399ef892a872c6871d1b4fed").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cb9c0316399ef892a872c6871d1b4fed-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cb9c0316399ef892a872c6871d1b4fed-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.20
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9dc21423dab593a7f0a0005a65291a46" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9dc21423dab593a7f0a0005a65291a46-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9dc21423dab593a7f0a0005a65291a46", [d], options); $("#flot-9dc21423dab593a7f0a0005a65291a46").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9dc21423dab593a7f0a0005a65291a46-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9dc21423dab593a7f0a0005a65291a46-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-847b3864e5a926d187bbbe299cd20750" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-847b3864e5a926d187bbbe299cd20750-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-847b3864e5a926d187bbbe299cd20750", [d], options); $("#flot-847b3864e5a926d187bbbe299cd20750").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-847b3864e5a926d187bbbe299cd20750-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-847b3864e5a926d187bbbe299cd20750-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.19
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f91ba70dcfed46f4b82f1b80f617b5fc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f91ba70dcfed46f4b82f1b80f617b5fc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f91ba70dcfed46f4b82f1b80f617b5fc", [d], options); $("#flot-f91ba70dcfed46f4b82f1b80f617b5fc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f91ba70dcfed46f4b82f1b80f617b5fc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f91ba70dcfed46f4b82f1b80f617b5fc-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2ebb736fcdb01038e10646f5c593f122" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2ebb736fcdb01038e10646f5c593f122-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2ebb736fcdb01038e10646f5c593f122", [d], options); $("#flot-2ebb736fcdb01038e10646f5c593f122").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2ebb736fcdb01038e10646f5c593f122-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2ebb736fcdb01038e10646f5c593f122-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.18
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0b7657f70166d21b889cf53750cc927e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0b7657f70166d21b889cf53750cc927e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0b7657f70166d21b889cf53750cc927e", [d], options); $("#flot-0b7657f70166d21b889cf53750cc927e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0b7657f70166d21b889cf53750cc927e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0b7657f70166d21b889cf53750cc927e-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bf48a1448221c06bcdff158db6b54f6f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bf48a1448221c06bcdff158db6b54f6f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bf48a1448221c06bcdff158db6b54f6f", [d], options); $("#flot-bf48a1448221c06bcdff158db6b54f6f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bf48a1448221c06bcdff158db6b54f6f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bf48a1448221c06bcdff158db6b54f6f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.17
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-59f1b652403e368888147d22701ad145" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-59f1b652403e368888147d22701ad145-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-59f1b652403e368888147d22701ad145", [d], options); $("#flot-59f1b652403e368888147d22701ad145").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-59f1b652403e368888147d22701ad145-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-59f1b652403e368888147d22701ad145-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ebae4621b054c8fa23e702c40c6ee061" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ebae4621b054c8fa23e702c40c6ee061-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ebae4621b054c8fa23e702c40c6ee061", [d], options); $("#flot-ebae4621b054c8fa23e702c40c6ee061").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ebae4621b054c8fa23e702c40c6ee061-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ebae4621b054c8fa23e702c40c6ee061-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.16
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-397b019affbba4f32fa4d96091b9db1f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-397b019affbba4f32fa4d96091b9db1f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-397b019affbba4f32fa4d96091b9db1f", [d], options); $("#flot-397b019affbba4f32fa4d96091b9db1f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-397b019affbba4f32fa4d96091b9db1f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-397b019affbba4f32fa4d96091b9db1f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-764f0d57ff77a5437d33f1de5830ff4a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-764f0d57ff77a5437d33f1de5830ff4a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-764f0d57ff77a5437d33f1de5830ff4a", [d], options); $("#flot-764f0d57ff77a5437d33f1de5830ff4a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-764f0d57ff77a5437d33f1de5830ff4a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-764f0d57ff77a5437d33f1de5830ff4a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.15
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0fb989871f935890706983b767428168" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0fb989871f935890706983b767428168-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0fb989871f935890706983b767428168", [d], options); $("#flot-0fb989871f935890706983b767428168").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0fb989871f935890706983b767428168-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0fb989871f935890706983b767428168-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2b20901548c9ee47cfa7e51b4de3c30e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2b20901548c9ee47cfa7e51b4de3c30e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2b20901548c9ee47cfa7e51b4de3c30e", [d], options); $("#flot-2b20901548c9ee47cfa7e51b4de3c30e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2b20901548c9ee47cfa7e51b4de3c30e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2b20901548c9ee47cfa7e51b4de3c30e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.14
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4a54885c5dfc2434bedef3a3371acdec" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4a54885c5dfc2434bedef3a3371acdec-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4a54885c5dfc2434bedef3a3371acdec", [d], options); $("#flot-4a54885c5dfc2434bedef3a3371acdec").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4a54885c5dfc2434bedef3a3371acdec-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4a54885c5dfc2434bedef3a3371acdec-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1e90905124eb78ae004253eb9e0b14ec" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1e90905124eb78ae004253eb9e0b14ec-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1e90905124eb78ae004253eb9e0b14ec", [d], options); $("#flot-1e90905124eb78ae004253eb9e0b14ec").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1e90905124eb78ae004253eb9e0b14ec-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1e90905124eb78ae004253eb9e0b14ec-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.13
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d400cce81b335fd4f573facea1fd5b95" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d400cce81b335fd4f573facea1fd5b95-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d400cce81b335fd4f573facea1fd5b95", [d], options); $("#flot-d400cce81b335fd4f573facea1fd5b95").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d400cce81b335fd4f573facea1fd5b95-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d400cce81b335fd4f573facea1fd5b95-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9e3c786f2434d40040484a0b5423bbd4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9e3c786f2434d40040484a0b5423bbd4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9e3c786f2434d40040484a0b5423bbd4", [d], options); $("#flot-9e3c786f2434d40040484a0b5423bbd4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9e3c786f2434d40040484a0b5423bbd4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9e3c786f2434d40040484a0b5423bbd4-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.12
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-16f67e514ab3725db7393305824dea0f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-16f67e514ab3725db7393305824dea0f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-16f67e514ab3725db7393305824dea0f", [d], options); $("#flot-16f67e514ab3725db7393305824dea0f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-16f67e514ab3725db7393305824dea0f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-16f67e514ab3725db7393305824dea0f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-74260e4dace64c0375c62f11f33a6c16" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-74260e4dace64c0375c62f11f33a6c16-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-74260e4dace64c0375c62f11f33a6c16", [d], options); $("#flot-74260e4dace64c0375c62f11f33a6c16").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-74260e4dace64c0375c62f11f33a6c16-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-74260e4dace64c0375c62f11f33a6c16-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.11
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a89fbb414634cb5afb9d179b9d88e8fc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a89fbb414634cb5afb9d179b9d88e8fc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a89fbb414634cb5afb9d179b9d88e8fc", [d], options); $("#flot-a89fbb414634cb5afb9d179b9d88e8fc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a89fbb414634cb5afb9d179b9d88e8fc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a89fbb414634cb5afb9d179b9d88e8fc-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dc5a08484e9b78456a9249f66f9beeca" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dc5a08484e9b78456a9249f66f9beeca-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dc5a08484e9b78456a9249f66f9beeca", [d], options); $("#flot-dc5a08484e9b78456a9249f66f9beeca").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dc5a08484e9b78456a9249f66f9beeca-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dc5a08484e9b78456a9249f66f9beeca-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.10
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2f609804cccdb509193dc07e2074c7ee" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2f609804cccdb509193dc07e2074c7ee-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2f609804cccdb509193dc07e2074c7ee", [d], options); $("#flot-2f609804cccdb509193dc07e2074c7ee").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2f609804cccdb509193dc07e2074c7ee-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2f609804cccdb509193dc07e2074c7ee-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-69fd0970d30a17984ed1d6c926c7f9ee" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-69fd0970d30a17984ed1d6c926c7f9ee-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-69fd0970d30a17984ed1d6c926c7f9ee", [d], options); $("#flot-69fd0970d30a17984ed1d6c926c7f9ee").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-69fd0970d30a17984ed1d6c926c7f9ee-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-69fd0970d30a17984ed1d6c926c7f9ee-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.9
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f55c9cb3e3748f6e2f1449f119db117d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f55c9cb3e3748f6e2f1449f119db117d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f55c9cb3e3748f6e2f1449f119db117d", [d], options); $("#flot-f55c9cb3e3748f6e2f1449f119db117d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f55c9cb3e3748f6e2f1449f119db117d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f55c9cb3e3748f6e2f1449f119db117d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-90ee0dca53f07b27586fc8e93a130cce" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-90ee0dca53f07b27586fc8e93a130cce-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-90ee0dca53f07b27586fc8e93a130cce", [d], options); $("#flot-90ee0dca53f07b27586fc8e93a130cce").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-90ee0dca53f07b27586fc8e93a130cce-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-90ee0dca53f07b27586fc8e93a130cce-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.8
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f2fe6ad112af5ac59055640563245bd5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f2fe6ad112af5ac59055640563245bd5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f2fe6ad112af5ac59055640563245bd5", [d], options); $("#flot-f2fe6ad112af5ac59055640563245bd5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f2fe6ad112af5ac59055640563245bd5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f2fe6ad112af5ac59055640563245bd5-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d14bed6a3c98a9744b845e2b97cd0b29" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d14bed6a3c98a9744b845e2b97cd0b29-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d14bed6a3c98a9744b845e2b97cd0b29", [d], options); $("#flot-d14bed6a3c98a9744b845e2b97cd0b29").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d14bed6a3c98a9744b845e2b97cd0b29-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d14bed6a3c98a9744b845e2b97cd0b29-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.7
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-eed78c9afea6405a02c920b7e70dc966" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-eed78c9afea6405a02c920b7e70dc966-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-eed78c9afea6405a02c920b7e70dc966", [d], options); $("#flot-eed78c9afea6405a02c920b7e70dc966").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-eed78c9afea6405a02c920b7e70dc966-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-eed78c9afea6405a02c920b7e70dc966-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6ab31613f8aded042e62896672483463" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6ab31613f8aded042e62896672483463-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6ab31613f8aded042e62896672483463", [d], options); $("#flot-6ab31613f8aded042e62896672483463").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6ab31613f8aded042e62896672483463-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6ab31613f8aded042e62896672483463-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.6
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-12e8c9dae79a5f624a519257f5330c24" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-12e8c9dae79a5f624a519257f5330c24-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-12e8c9dae79a5f624a519257f5330c24", [d], options); $("#flot-12e8c9dae79a5f624a519257f5330c24").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-12e8c9dae79a5f624a519257f5330c24-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-12e8c9dae79a5f624a519257f5330c24-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9b44a8f3c14a3cfb2129f7cac0727c36" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9b44a8f3c14a3cfb2129f7cac0727c36-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9b44a8f3c14a3cfb2129f7cac0727c36", [d], options); $("#flot-9b44a8f3c14a3cfb2129f7cac0727c36").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9b44a8f3c14a3cfb2129f7cac0727c36-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9b44a8f3c14a3cfb2129f7cac0727c36-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.5
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-31bd62c5b7fbaa546958dbadfebab943" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-31bd62c5b7fbaa546958dbadfebab943-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-31bd62c5b7fbaa546958dbadfebab943", [d], options); $("#flot-31bd62c5b7fbaa546958dbadfebab943").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-31bd62c5b7fbaa546958dbadfebab943-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-31bd62c5b7fbaa546958dbadfebab943-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-17dd24b215c14af572a1d5448aeda3b0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-17dd24b215c14af572a1d5448aeda3b0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-17dd24b215c14af572a1d5448aeda3b0", [d], options); $("#flot-17dd24b215c14af572a1d5448aeda3b0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-17dd24b215c14af572a1d5448aeda3b0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-17dd24b215c14af572a1d5448aeda3b0-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.4
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dfc5c9631b8ac2e996575cff9fec7b39" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dfc5c9631b8ac2e996575cff9fec7b39-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dfc5c9631b8ac2e996575cff9fec7b39", [d], options); $("#flot-dfc5c9631b8ac2e996575cff9fec7b39").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dfc5c9631b8ac2e996575cff9fec7b39-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dfc5c9631b8ac2e996575cff9fec7b39-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c1858c6729dbdd9d5a3b20ea59ac689b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c1858c6729dbdd9d5a3b20ea59ac689b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c1858c6729dbdd9d5a3b20ea59ac689b", [d], options); $("#flot-c1858c6729dbdd9d5a3b20ea59ac689b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c1858c6729dbdd9d5a3b20ea59ac689b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c1858c6729dbdd9d5a3b20ea59ac689b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.3
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7d6477b9b592c851b2a6453146347ebd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7d6477b9b592c851b2a6453146347ebd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7d6477b9b592c851b2a6453146347ebd", [d], options); $("#flot-7d6477b9b592c851b2a6453146347ebd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7d6477b9b592c851b2a6453146347ebd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7d6477b9b592c851b2a6453146347ebd-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0a1320c1f1fec7e1bef261613ad10d5b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0a1320c1f1fec7e1bef261613ad10d5b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0a1320c1f1fec7e1bef261613ad10d5b", [d], options); $("#flot-0a1320c1f1fec7e1bef261613ad10d5b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0a1320c1f1fec7e1bef261613ad10d5b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0a1320c1f1fec7e1bef261613ad10d5b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.2
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-42a5b6d53af0b65891e7171908152d8f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-42a5b6d53af0b65891e7171908152d8f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-42a5b6d53af0b65891e7171908152d8f", [d], options); $("#flot-42a5b6d53af0b65891e7171908152d8f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-42a5b6d53af0b65891e7171908152d8f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-42a5b6d53af0b65891e7171908152d8f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-784f942554e310f4b219405a9538f0fb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-784f942554e310f4b219405a9538f0fb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-784f942554e310f4b219405a9538f0fb", [d], options); $("#flot-784f942554e310f4b219405a9538f0fb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-784f942554e310f4b219405a9538f0fb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-784f942554e310f4b219405a9538f0fb-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.1
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ab009a9606f9340902390e5273f29160" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ab009a9606f9340902390e5273f29160-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ab009a9606f9340902390e5273f29160", [d], options); $("#flot-ab009a9606f9340902390e5273f29160").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ab009a9606f9340902390e5273f29160-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ab009a9606f9340902390e5273f29160-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-27badb1a33710bd7465fadafd2d0b0b7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-27badb1a33710bd7465fadafd2d0b0b7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-27badb1a33710bd7465fadafd2d0b0b7", [d], options); $("#flot-27badb1a33710bd7465fadafd2d0b0b7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-27badb1a33710bd7465fadafd2d0b0b7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-27badb1a33710bd7465fadafd2d0b0b7-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.3.0
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dc3dc929d8c9b3d947d342397ae8ef94" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dc3dc929d8c9b3d947d342397ae8ef94-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dc3dc929d8c9b3d947d342397ae8ef94", [d], options); $("#flot-dc3dc929d8c9b3d947d342397ae8ef94").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dc3dc929d8c9b3d947d342397ae8ef94-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dc3dc929d8c9b3d947d342397ae8ef94-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-540dae5843ea906a98de27561ca66292" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-540dae5843ea906a98de27561ca66292-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-540dae5843ea906a98de27561ca66292", [d], options); $("#flot-540dae5843ea906a98de27561ca66292").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-540dae5843ea906a98de27561ca66292-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-540dae5843ea906a98de27561ca66292-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.34
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4afe4c059390b42d6ecdc380757b79bd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4afe4c059390b42d6ecdc380757b79bd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4afe4c059390b42d6ecdc380757b79bd", [d], options); $("#flot-4afe4c059390b42d6ecdc380757b79bd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4afe4c059390b42d6ecdc380757b79bd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4afe4c059390b42d6ecdc380757b79bd-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0681c39394b591b125edbda3f980f18d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0681c39394b591b125edbda3f980f18d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0681c39394b591b125edbda3f980f18d", [d], options); $("#flot-0681c39394b591b125edbda3f980f18d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0681c39394b591b125edbda3f980f18d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0681c39394b591b125edbda3f980f18d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.33
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-20ae52e05c26141914947de6bd9adce2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-20ae52e05c26141914947de6bd9adce2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-20ae52e05c26141914947de6bd9adce2", [d], options); $("#flot-20ae52e05c26141914947de6bd9adce2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-20ae52e05c26141914947de6bd9adce2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-20ae52e05c26141914947de6bd9adce2-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-eeb741fa48a2f072538cdf358efe8e97" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-eeb741fa48a2f072538cdf358efe8e97-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-eeb741fa48a2f072538cdf358efe8e97", [d], options); $("#flot-eeb741fa48a2f072538cdf358efe8e97").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-eeb741fa48a2f072538cdf358efe8e97-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-eeb741fa48a2f072538cdf358efe8e97-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.32
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-76a8a914455d8f328fe6e1ee09d2f666" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-76a8a914455d8f328fe6e1ee09d2f666-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-76a8a914455d8f328fe6e1ee09d2f666", [d], options); $("#flot-76a8a914455d8f328fe6e1ee09d2f666").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-76a8a914455d8f328fe6e1ee09d2f666-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-76a8a914455d8f328fe6e1ee09d2f666-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dbc58e626e8fef0d79925e83bddfcbf1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dbc58e626e8fef0d79925e83bddfcbf1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dbc58e626e8fef0d79925e83bddfcbf1", [d], options); $("#flot-dbc58e626e8fef0d79925e83bddfcbf1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dbc58e626e8fef0d79925e83bddfcbf1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dbc58e626e8fef0d79925e83bddfcbf1-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.31
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e397ceda209ddc8d6a0b610af8aa3de4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e397ceda209ddc8d6a0b610af8aa3de4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e397ceda209ddc8d6a0b610af8aa3de4", [d], options); $("#flot-e397ceda209ddc8d6a0b610af8aa3de4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e397ceda209ddc8d6a0b610af8aa3de4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e397ceda209ddc8d6a0b610af8aa3de4-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b01e9aaa0f6f116cc53c4641eee4945d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b01e9aaa0f6f116cc53c4641eee4945d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b01e9aaa0f6f116cc53c4641eee4945d", [d], options); $("#flot-b01e9aaa0f6f116cc53c4641eee4945d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b01e9aaa0f6f116cc53c4641eee4945d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b01e9aaa0f6f116cc53c4641eee4945d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.30
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-131bece952bd845dfe73df90c7b06d8a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-131bece952bd845dfe73df90c7b06d8a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-131bece952bd845dfe73df90c7b06d8a", [d], options); $("#flot-131bece952bd845dfe73df90c7b06d8a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-131bece952bd845dfe73df90c7b06d8a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-131bece952bd845dfe73df90c7b06d8a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7f0cec4964b9ce19ab1cb2abef30dcb6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7f0cec4964b9ce19ab1cb2abef30dcb6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7f0cec4964b9ce19ab1cb2abef30dcb6", [d], options); $("#flot-7f0cec4964b9ce19ab1cb2abef30dcb6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7f0cec4964b9ce19ab1cb2abef30dcb6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7f0cec4964b9ce19ab1cb2abef30dcb6-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.29
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-92fff1e894cf0818a8bc0f094c9362a5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-92fff1e894cf0818a8bc0f094c9362a5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-92fff1e894cf0818a8bc0f094c9362a5", [d], options); $("#flot-92fff1e894cf0818a8bc0f094c9362a5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-92fff1e894cf0818a8bc0f094c9362a5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-92fff1e894cf0818a8bc0f094c9362a5-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4a9fdc45576c95d5560747c978f1d438" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4a9fdc45576c95d5560747c978f1d438-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4a9fdc45576c95d5560747c978f1d438", [d], options); $("#flot-4a9fdc45576c95d5560747c978f1d438").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4a9fdc45576c95d5560747c978f1d438-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4a9fdc45576c95d5560747c978f1d438-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.28
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-31bbf48990f667dc51367971849bc85a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-31bbf48990f667dc51367971849bc85a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-31bbf48990f667dc51367971849bc85a", [d], options); $("#flot-31bbf48990f667dc51367971849bc85a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-31bbf48990f667dc51367971849bc85a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-31bbf48990f667dc51367971849bc85a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6a232ef4aa5dff74064226f7e14b87da" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6a232ef4aa5dff74064226f7e14b87da-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6a232ef4aa5dff74064226f7e14b87da", [d], options); $("#flot-6a232ef4aa5dff74064226f7e14b87da").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6a232ef4aa5dff74064226f7e14b87da-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6a232ef4aa5dff74064226f7e14b87da-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.27
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-098ef01df96d1545931b7d038ec77ca6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-098ef01df96d1545931b7d038ec77ca6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-098ef01df96d1545931b7d038ec77ca6", [d], options); $("#flot-098ef01df96d1545931b7d038ec77ca6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-098ef01df96d1545931b7d038ec77ca6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-098ef01df96d1545931b7d038ec77ca6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5c3ffaecf46e7a2ebff7c34015f50021" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5c3ffaecf46e7a2ebff7c34015f50021-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5c3ffaecf46e7a2ebff7c34015f50021", [d], options); $("#flot-5c3ffaecf46e7a2ebff7c34015f50021").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5c3ffaecf46e7a2ebff7c34015f50021-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5c3ffaecf46e7a2ebff7c34015f50021-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.26
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-075a4ca1c8dd16acca1dd36ac238f719" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-075a4ca1c8dd16acca1dd36ac238f719-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-075a4ca1c8dd16acca1dd36ac238f719", [d], options); $("#flot-075a4ca1c8dd16acca1dd36ac238f719").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-075a4ca1c8dd16acca1dd36ac238f719-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-075a4ca1c8dd16acca1dd36ac238f719-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-755e297f2fe563712c60163f959dbf16" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-755e297f2fe563712c60163f959dbf16-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-755e297f2fe563712c60163f959dbf16", [d], options); $("#flot-755e297f2fe563712c60163f959dbf16").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-755e297f2fe563712c60163f959dbf16-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-755e297f2fe563712c60163f959dbf16-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.25
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c6476de3ca38482758b43ad352f73f91" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c6476de3ca38482758b43ad352f73f91-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c6476de3ca38482758b43ad352f73f91", [d], options); $("#flot-c6476de3ca38482758b43ad352f73f91").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c6476de3ca38482758b43ad352f73f91-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c6476de3ca38482758b43ad352f73f91-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5b7237627e2cf8a1fc654f7f99cb00cb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5b7237627e2cf8a1fc654f7f99cb00cb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5b7237627e2cf8a1fc654f7f99cb00cb", [d], options); $("#flot-5b7237627e2cf8a1fc654f7f99cb00cb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5b7237627e2cf8a1fc654f7f99cb00cb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5b7237627e2cf8a1fc654f7f99cb00cb-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.24
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e637c9ca4bc38b9ee6675ef7bba53c23" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e637c9ca4bc38b9ee6675ef7bba53c23-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e637c9ca4bc38b9ee6675ef7bba53c23", [d], options); $("#flot-e637c9ca4bc38b9ee6675ef7bba53c23").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e637c9ca4bc38b9ee6675ef7bba53c23-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e637c9ca4bc38b9ee6675ef7bba53c23-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-561e0ae1ede45cd57b07740b2379710b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-561e0ae1ede45cd57b07740b2379710b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-561e0ae1ede45cd57b07740b2379710b", [d], options); $("#flot-561e0ae1ede45cd57b07740b2379710b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-561e0ae1ede45cd57b07740b2379710b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-561e0ae1ede45cd57b07740b2379710b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.23
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-32185ab0a10d99297a3ac6c438de4e1b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-32185ab0a10d99297a3ac6c438de4e1b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-32185ab0a10d99297a3ac6c438de4e1b", [d], options); $("#flot-32185ab0a10d99297a3ac6c438de4e1b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-32185ab0a10d99297a3ac6c438de4e1b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-32185ab0a10d99297a3ac6c438de4e1b-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a097a5f5d70fd3707896997d7b88d5af" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a097a5f5d70fd3707896997d7b88d5af-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a097a5f5d70fd3707896997d7b88d5af", [d], options); $("#flot-a097a5f5d70fd3707896997d7b88d5af").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a097a5f5d70fd3707896997d7b88d5af-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a097a5f5d70fd3707896997d7b88d5af-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.22
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b1bceaaee5de815cb3c322bc29a40447" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b1bceaaee5de815cb3c322bc29a40447-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b1bceaaee5de815cb3c322bc29a40447", [d], options); $("#flot-b1bceaaee5de815cb3c322bc29a40447").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b1bceaaee5de815cb3c322bc29a40447-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b1bceaaee5de815cb3c322bc29a40447-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e391d475a5c94cad15774925eb5d2b47" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e391d475a5c94cad15774925eb5d2b47-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e391d475a5c94cad15774925eb5d2b47", [d], options); $("#flot-e391d475a5c94cad15774925eb5d2b47").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e391d475a5c94cad15774925eb5d2b47-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e391d475a5c94cad15774925eb5d2b47-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.21
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-553daed72869c0912169f9a7b6107551" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-553daed72869c0912169f9a7b6107551-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-553daed72869c0912169f9a7b6107551", [d], options); $("#flot-553daed72869c0912169f9a7b6107551").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-553daed72869c0912169f9a7b6107551-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-553daed72869c0912169f9a7b6107551-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d72df392d7330e776f35abdc9cd8fc4f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d72df392d7330e776f35abdc9cd8fc4f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d72df392d7330e776f35abdc9cd8fc4f", [d], options); $("#flot-d72df392d7330e776f35abdc9cd8fc4f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d72df392d7330e776f35abdc9cd8fc4f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d72df392d7330e776f35abdc9cd8fc4f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.20
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6c9a9c6b25870cf7a9f1b3526a92695b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6c9a9c6b25870cf7a9f1b3526a92695b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6c9a9c6b25870cf7a9f1b3526a92695b", [d], options); $("#flot-6c9a9c6b25870cf7a9f1b3526a92695b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6c9a9c6b25870cf7a9f1b3526a92695b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6c9a9c6b25870cf7a9f1b3526a92695b-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ea254257e5374c7a45b87691ee65f086" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ea254257e5374c7a45b87691ee65f086-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ea254257e5374c7a45b87691ee65f086", [d], options); $("#flot-ea254257e5374c7a45b87691ee65f086").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ea254257e5374c7a45b87691ee65f086-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ea254257e5374c7a45b87691ee65f086-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.19
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7532b6b71bbeec81dd852e0123095a58" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7532b6b71bbeec81dd852e0123095a58-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7532b6b71bbeec81dd852e0123095a58", [d], options); $("#flot-7532b6b71bbeec81dd852e0123095a58").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7532b6b71bbeec81dd852e0123095a58-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7532b6b71bbeec81dd852e0123095a58-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d18065bf87d820d07c3789047d7c4996" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d18065bf87d820d07c3789047d7c4996-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d18065bf87d820d07c3789047d7c4996", [d], options); $("#flot-d18065bf87d820d07c3789047d7c4996").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d18065bf87d820d07c3789047d7c4996-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d18065bf87d820d07c3789047d7c4996-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.18
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6bcf294ca1683d032c35735740af2b42" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6bcf294ca1683d032c35735740af2b42-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6bcf294ca1683d032c35735740af2b42", [d], options); $("#flot-6bcf294ca1683d032c35735740af2b42").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6bcf294ca1683d032c35735740af2b42-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6bcf294ca1683d032c35735740af2b42-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ac2981c405d60ed8211b4346f716c493" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ac2981c405d60ed8211b4346f716c493-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ac2981c405d60ed8211b4346f716c493", [d], options); $("#flot-ac2981c405d60ed8211b4346f716c493").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ac2981c405d60ed8211b4346f716c493-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ac2981c405d60ed8211b4346f716c493-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.17
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0b09f1812e46358d1199d735aa6208ed" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0b09f1812e46358d1199d735aa6208ed-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0b09f1812e46358d1199d735aa6208ed", [d], options); $("#flot-0b09f1812e46358d1199d735aa6208ed").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0b09f1812e46358d1199d735aa6208ed-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0b09f1812e46358d1199d735aa6208ed-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0f98ed244c4f3d8f457a18d21d6103da" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0f98ed244c4f3d8f457a18d21d6103da-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0f98ed244c4f3d8f457a18d21d6103da", [d], options); $("#flot-0f98ed244c4f3d8f457a18d21d6103da").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0f98ed244c4f3d8f457a18d21d6103da-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0f98ed244c4f3d8f457a18d21d6103da-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.16
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3992f3df0880bd54d9867c4e6d26373c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3992f3df0880bd54d9867c4e6d26373c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3992f3df0880bd54d9867c4e6d26373c", [d], options); $("#flot-3992f3df0880bd54d9867c4e6d26373c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3992f3df0880bd54d9867c4e6d26373c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3992f3df0880bd54d9867c4e6d26373c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-da7ea64591431a28dd2c4555f44b007a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-da7ea64591431a28dd2c4555f44b007a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-da7ea64591431a28dd2c4555f44b007a", [d], options); $("#flot-da7ea64591431a28dd2c4555f44b007a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-da7ea64591431a28dd2c4555f44b007a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-da7ea64591431a28dd2c4555f44b007a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.15
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-53f5e55b6585e23bcbd083d9a59191a6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-53f5e55b6585e23bcbd083d9a59191a6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-53f5e55b6585e23bcbd083d9a59191a6", [d], options); $("#flot-53f5e55b6585e23bcbd083d9a59191a6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-53f5e55b6585e23bcbd083d9a59191a6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-53f5e55b6585e23bcbd083d9a59191a6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3ea95088d299fc7faf60b50ec0daae5f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3ea95088d299fc7faf60b50ec0daae5f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3ea95088d299fc7faf60b50ec0daae5f", [d], options); $("#flot-3ea95088d299fc7faf60b50ec0daae5f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3ea95088d299fc7faf60b50ec0daae5f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3ea95088d299fc7faf60b50ec0daae5f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.14
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ee92a85aec33853cc61e36e344e2c10a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ee92a85aec33853cc61e36e344e2c10a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ee92a85aec33853cc61e36e344e2c10a", [d], options); $("#flot-ee92a85aec33853cc61e36e344e2c10a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ee92a85aec33853cc61e36e344e2c10a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ee92a85aec33853cc61e36e344e2c10a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-574f57b7ec35460a38f23b86ca15c67b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-574f57b7ec35460a38f23b86ca15c67b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-574f57b7ec35460a38f23b86ca15c67b", [d], options); $("#flot-574f57b7ec35460a38f23b86ca15c67b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-574f57b7ec35460a38f23b86ca15c67b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-574f57b7ec35460a38f23b86ca15c67b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.13
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-de056ff442a25e9e0e972d1872b1c405" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-de056ff442a25e9e0e972d1872b1c405-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-de056ff442a25e9e0e972d1872b1c405", [d], options); $("#flot-de056ff442a25e9e0e972d1872b1c405").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-de056ff442a25e9e0e972d1872b1c405-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-de056ff442a25e9e0e972d1872b1c405-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4b1d3c854073878e89c8aa55548267d0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4b1d3c854073878e89c8aa55548267d0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4b1d3c854073878e89c8aa55548267d0", [d], options); $("#flot-4b1d3c854073878e89c8aa55548267d0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4b1d3c854073878e89c8aa55548267d0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4b1d3c854073878e89c8aa55548267d0-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.12
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0f19b043171ecedda4c9f4511c2194ce" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0f19b043171ecedda4c9f4511c2194ce-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0f19b043171ecedda4c9f4511c2194ce", [d], options); $("#flot-0f19b043171ecedda4c9f4511c2194ce").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0f19b043171ecedda4c9f4511c2194ce-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0f19b043171ecedda4c9f4511c2194ce-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d607fb84d24e4f6bbf54f6989e455144" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d607fb84d24e4f6bbf54f6989e455144-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d607fb84d24e4f6bbf54f6989e455144", [d], options); $("#flot-d607fb84d24e4f6bbf54f6989e455144").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d607fb84d24e4f6bbf54f6989e455144-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d607fb84d24e4f6bbf54f6989e455144-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.11
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-29ef8e51ccd6f861ce78c9924e16a57c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-29ef8e51ccd6f861ce78c9924e16a57c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-29ef8e51ccd6f861ce78c9924e16a57c", [d], options); $("#flot-29ef8e51ccd6f861ce78c9924e16a57c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-29ef8e51ccd6f861ce78c9924e16a57c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-29ef8e51ccd6f861ce78c9924e16a57c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d3f3f82942aff5fbd1365418cd938b63" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d3f3f82942aff5fbd1365418cd938b63-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d3f3f82942aff5fbd1365418cd938b63", [d], options); $("#flot-d3f3f82942aff5fbd1365418cd938b63").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d3f3f82942aff5fbd1365418cd938b63-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d3f3f82942aff5fbd1365418cd938b63-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.10
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-08a87aaeea812bc9e1c4029539ea8a9a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-08a87aaeea812bc9e1c4029539ea8a9a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-08a87aaeea812bc9e1c4029539ea8a9a", [d], options); $("#flot-08a87aaeea812bc9e1c4029539ea8a9a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-08a87aaeea812bc9e1c4029539ea8a9a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-08a87aaeea812bc9e1c4029539ea8a9a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5b2dd4250b065667716fa268d9180d4c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5b2dd4250b065667716fa268d9180d4c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5b2dd4250b065667716fa268d9180d4c", [d], options); $("#flot-5b2dd4250b065667716fa268d9180d4c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5b2dd4250b065667716fa268d9180d4c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5b2dd4250b065667716fa268d9180d4c-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.9
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9c4549c46f2dba8318574c4f4f85bedc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9c4549c46f2dba8318574c4f4f85bedc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9c4549c46f2dba8318574c4f4f85bedc", [d], options); $("#flot-9c4549c46f2dba8318574c4f4f85bedc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9c4549c46f2dba8318574c4f4f85bedc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9c4549c46f2dba8318574c4f4f85bedc-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b48c8f5e685407c0f2d6f97c9a2a934c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b48c8f5e685407c0f2d6f97c9a2a934c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b48c8f5e685407c0f2d6f97c9a2a934c", [d], options); $("#flot-b48c8f5e685407c0f2d6f97c9a2a934c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b48c8f5e685407c0f2d6f97c9a2a934c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b48c8f5e685407c0f2d6f97c9a2a934c-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.8
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e3c32c10a54b25869b9b180cba89d2c6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e3c32c10a54b25869b9b180cba89d2c6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e3c32c10a54b25869b9b180cba89d2c6", [d], options); $("#flot-e3c32c10a54b25869b9b180cba89d2c6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e3c32c10a54b25869b9b180cba89d2c6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e3c32c10a54b25869b9b180cba89d2c6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-080beb081557f0c5bc17aae472a80c1e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-080beb081557f0c5bc17aae472a80c1e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-080beb081557f0c5bc17aae472a80c1e", [d], options); $("#flot-080beb081557f0c5bc17aae472a80c1e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-080beb081557f0c5bc17aae472a80c1e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-080beb081557f0c5bc17aae472a80c1e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.7
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-987dd4b231a4b40006e23ca13b6acb58" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-987dd4b231a4b40006e23ca13b6acb58-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-987dd4b231a4b40006e23ca13b6acb58", [d], options); $("#flot-987dd4b231a4b40006e23ca13b6acb58").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-987dd4b231a4b40006e23ca13b6acb58-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-987dd4b231a4b40006e23ca13b6acb58-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9aa59eaa0c07ae794f999c92cd0ccbb2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9aa59eaa0c07ae794f999c92cd0ccbb2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9aa59eaa0c07ae794f999c92cd0ccbb2", [d], options); $("#flot-9aa59eaa0c07ae794f999c92cd0ccbb2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9aa59eaa0c07ae794f999c92cd0ccbb2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9aa59eaa0c07ae794f999c92cd0ccbb2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.6
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9fdc16502b2434792f67675b71446bd0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9fdc16502b2434792f67675b71446bd0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9fdc16502b2434792f67675b71446bd0", [d], options); $("#flot-9fdc16502b2434792f67675b71446bd0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9fdc16502b2434792f67675b71446bd0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9fdc16502b2434792f67675b71446bd0-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6cf92f37840c9e64ac66dac376e5d800" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6cf92f37840c9e64ac66dac376e5d800-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6cf92f37840c9e64ac66dac376e5d800", [d], options); $("#flot-6cf92f37840c9e64ac66dac376e5d800").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6cf92f37840c9e64ac66dac376e5d800-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6cf92f37840c9e64ac66dac376e5d800-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.5
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b70d58b9cf226a6544e8136e869f75fb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b70d58b9cf226a6544e8136e869f75fb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b70d58b9cf226a6544e8136e869f75fb", [d], options); $("#flot-b70d58b9cf226a6544e8136e869f75fb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b70d58b9cf226a6544e8136e869f75fb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b70d58b9cf226a6544e8136e869f75fb-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1dc054eecb73628bd91078f752f35237" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1dc054eecb73628bd91078f752f35237-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1dc054eecb73628bd91078f752f35237", [d], options); $("#flot-1dc054eecb73628bd91078f752f35237").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1dc054eecb73628bd91078f752f35237-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1dc054eecb73628bd91078f752f35237-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.4
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8a6f8cbd6afc4bc48373f73d6c633fb1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8a6f8cbd6afc4bc48373f73d6c633fb1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8a6f8cbd6afc4bc48373f73d6c633fb1", [d], options); $("#flot-8a6f8cbd6afc4bc48373f73d6c633fb1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8a6f8cbd6afc4bc48373f73d6c633fb1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8a6f8cbd6afc4bc48373f73d6c633fb1-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ace4c56ba1582e3a3c6ed4a3b20ec7a9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ace4c56ba1582e3a3c6ed4a3b20ec7a9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ace4c56ba1582e3a3c6ed4a3b20ec7a9", [d], options); $("#flot-ace4c56ba1582e3a3c6ed4a3b20ec7a9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ace4c56ba1582e3a3c6ed4a3b20ec7a9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ace4c56ba1582e3a3c6ed4a3b20ec7a9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.3
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-27af298fb5e024280c8187f2c926bc43" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-27af298fb5e024280c8187f2c926bc43-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-27af298fb5e024280c8187f2c926bc43", [d], options); $("#flot-27af298fb5e024280c8187f2c926bc43").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-27af298fb5e024280c8187f2c926bc43-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-27af298fb5e024280c8187f2c926bc43-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1e29ce569989aba6b35c79e802890806" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1e29ce569989aba6b35c79e802890806-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1e29ce569989aba6b35c79e802890806", [d], options); $("#flot-1e29ce569989aba6b35c79e802890806").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1e29ce569989aba6b35c79e802890806-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1e29ce569989aba6b35c79e802890806-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.2
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-fb46ecc350a48bebd88f7a73b1ac37f5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-fb46ecc350a48bebd88f7a73b1ac37f5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-fb46ecc350a48bebd88f7a73b1ac37f5", [d], options); $("#flot-fb46ecc350a48bebd88f7a73b1ac37f5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-fb46ecc350a48bebd88f7a73b1ac37f5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-fb46ecc350a48bebd88f7a73b1ac37f5-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-fc90222d5ae96570b5320705a09d9acf" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-fc90222d5ae96570b5320705a09d9acf-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-fc90222d5ae96570b5320705a09d9acf", [d], options); $("#flot-fc90222d5ae96570b5320705a09d9acf").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-fc90222d5ae96570b5320705a09d9acf-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-fc90222d5ae96570b5320705a09d9acf-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.1
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4893afaa136c81c94c2dec142b6cadfe" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4893afaa136c81c94c2dec142b6cadfe-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4893afaa136c81c94c2dec142b6cadfe", [d], options); $("#flot-4893afaa136c81c94c2dec142b6cadfe").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4893afaa136c81c94c2dec142b6cadfe-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4893afaa136c81c94c2dec142b6cadfe-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a61b67494b6db47b2224851e55f2a587" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a61b67494b6db47b2224851e55f2a587-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a61b67494b6db47b2224851e55f2a587", [d], options); $("#flot-a61b67494b6db47b2224851e55f2a587").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a61b67494b6db47b2224851e55f2a587-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a61b67494b6db47b2224851e55f2a587-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.2.0
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a512b09504f0964ca92a7c0dc1c0b80c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a512b09504f0964ca92a7c0dc1c0b80c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a512b09504f0964ca92a7c0dc1c0b80c", [d], options); $("#flot-a512b09504f0964ca92a7c0dc1c0b80c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a512b09504f0964ca92a7c0dc1c0b80c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a512b09504f0964ca92a7c0dc1c0b80c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-da4e66d4022d0b1bc84e001eca8943c9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-da4e66d4022d0b1bc84e001eca8943c9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-da4e66d4022d0b1bc84e001eca8943c9", [d], options); $("#flot-da4e66d4022d0b1bc84e001eca8943c9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-da4e66d4022d0b1bc84e001eca8943c9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-da4e66d4022d0b1bc84e001eca8943c9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.33
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-84243b4a573f985d1b15f86019e073e6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-84243b4a573f985d1b15f86019e073e6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-84243b4a573f985d1b15f86019e073e6", [d], options); $("#flot-84243b4a573f985d1b15f86019e073e6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-84243b4a573f985d1b15f86019e073e6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-84243b4a573f985d1b15f86019e073e6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ddc6ee09bb39f9d27748b66b5ec050f5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ddc6ee09bb39f9d27748b66b5ec050f5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ddc6ee09bb39f9d27748b66b5ec050f5", [d], options); $("#flot-ddc6ee09bb39f9d27748b66b5ec050f5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ddc6ee09bb39f9d27748b66b5ec050f5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ddc6ee09bb39f9d27748b66b5ec050f5-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.32
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c7e8308b07634bc1ad4812f35f0b2866" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c7e8308b07634bc1ad4812f35f0b2866-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c7e8308b07634bc1ad4812f35f0b2866", [d], options); $("#flot-c7e8308b07634bc1ad4812f35f0b2866").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c7e8308b07634bc1ad4812f35f0b2866-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c7e8308b07634bc1ad4812f35f0b2866-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a23410596219268e1c0b8e8bd3217402" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a23410596219268e1c0b8e8bd3217402-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a23410596219268e1c0b8e8bd3217402", [d], options); $("#flot-a23410596219268e1c0b8e8bd3217402").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a23410596219268e1c0b8e8bd3217402-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a23410596219268e1c0b8e8bd3217402-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.31
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6830a17ac83445207af6de509bc1e1e0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6830a17ac83445207af6de509bc1e1e0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6830a17ac83445207af6de509bc1e1e0", [d], options); $("#flot-6830a17ac83445207af6de509bc1e1e0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6830a17ac83445207af6de509bc1e1e0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6830a17ac83445207af6de509bc1e1e0-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ee3cb254e87884600b2631f8b4a9d52b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ee3cb254e87884600b2631f8b4a9d52b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ee3cb254e87884600b2631f8b4a9d52b", [d], options); $("#flot-ee3cb254e87884600b2631f8b4a9d52b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ee3cb254e87884600b2631f8b4a9d52b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ee3cb254e87884600b2631f8b4a9d52b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.30
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9ef6664e1b22ef910f219e33a86c7d83" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9ef6664e1b22ef910f219e33a86c7d83-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9ef6664e1b22ef910f219e33a86c7d83", [d], options); $("#flot-9ef6664e1b22ef910f219e33a86c7d83").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9ef6664e1b22ef910f219e33a86c7d83-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9ef6664e1b22ef910f219e33a86c7d83-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c2a5ffdc1b9cfbea6189d75b40cdea92" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c2a5ffdc1b9cfbea6189d75b40cdea92-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c2a5ffdc1b9cfbea6189d75b40cdea92", [d], options); $("#flot-c2a5ffdc1b9cfbea6189d75b40cdea92").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c2a5ffdc1b9cfbea6189d75b40cdea92-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c2a5ffdc1b9cfbea6189d75b40cdea92-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.29
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a546cb73fdbf5cf45f7c643273fc48a9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a546cb73fdbf5cf45f7c643273fc48a9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a546cb73fdbf5cf45f7c643273fc48a9", [d], options); $("#flot-a546cb73fdbf5cf45f7c643273fc48a9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a546cb73fdbf5cf45f7c643273fc48a9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a546cb73fdbf5cf45f7c643273fc48a9-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-99a8910f03fc9a474c4c565e1ced0599" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-99a8910f03fc9a474c4c565e1ced0599-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-99a8910f03fc9a474c4c565e1ced0599", [d], options); $("#flot-99a8910f03fc9a474c4c565e1ced0599").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-99a8910f03fc9a474c4c565e1ced0599-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-99a8910f03fc9a474c4c565e1ced0599-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.28
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6c30ac51f4126de0e22a6f4b1fb0429f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6c30ac51f4126de0e22a6f4b1fb0429f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6c30ac51f4126de0e22a6f4b1fb0429f", [d], options); $("#flot-6c30ac51f4126de0e22a6f4b1fb0429f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6c30ac51f4126de0e22a6f4b1fb0429f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6c30ac51f4126de0e22a6f4b1fb0429f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-566982ed573ef5d8ff40cc4fd914432e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-566982ed573ef5d8ff40cc4fd914432e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-566982ed573ef5d8ff40cc4fd914432e", [d], options); $("#flot-566982ed573ef5d8ff40cc4fd914432e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-566982ed573ef5d8ff40cc4fd914432e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-566982ed573ef5d8ff40cc4fd914432e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.27
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3c732db86d26c4e3f2808c4d65d84347" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3c732db86d26c4e3f2808c4d65d84347-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3c732db86d26c4e3f2808c4d65d84347", [d], options); $("#flot-3c732db86d26c4e3f2808c4d65d84347").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3c732db86d26c4e3f2808c4d65d84347-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3c732db86d26c4e3f2808c4d65d84347-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7962597be46b80819c2278718c637bf7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7962597be46b80819c2278718c637bf7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7962597be46b80819c2278718c637bf7", [d], options); $("#flot-7962597be46b80819c2278718c637bf7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7962597be46b80819c2278718c637bf7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7962597be46b80819c2278718c637bf7-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.26
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-688a0e866736452c506f3595ab63665b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-688a0e866736452c506f3595ab63665b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-688a0e866736452c506f3595ab63665b", [d], options); $("#flot-688a0e866736452c506f3595ab63665b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-688a0e866736452c506f3595ab63665b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-688a0e866736452c506f3595ab63665b-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-667159622e06ee697795fda0c779e27a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-667159622e06ee697795fda0c779e27a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-667159622e06ee697795fda0c779e27a", [d], options); $("#flot-667159622e06ee697795fda0c779e27a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-667159622e06ee697795fda0c779e27a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-667159622e06ee697795fda0c779e27a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.25
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f4f4d6c5641cf134337578368b685b8d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f4f4d6c5641cf134337578368b685b8d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f4f4d6c5641cf134337578368b685b8d", [d], options); $("#flot-f4f4d6c5641cf134337578368b685b8d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f4f4d6c5641cf134337578368b685b8d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f4f4d6c5641cf134337578368b685b8d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-388963aabeaa11caa170dd907329b998" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-388963aabeaa11caa170dd907329b998-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-388963aabeaa11caa170dd907329b998", [d], options); $("#flot-388963aabeaa11caa170dd907329b998").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-388963aabeaa11caa170dd907329b998-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-388963aabeaa11caa170dd907329b998-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.24
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a00dd37394dbeca2e783f541e3625f49" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a00dd37394dbeca2e783f541e3625f49-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a00dd37394dbeca2e783f541e3625f49", [d], options); $("#flot-a00dd37394dbeca2e783f541e3625f49").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a00dd37394dbeca2e783f541e3625f49-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a00dd37394dbeca2e783f541e3625f49-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-221d6affc0962df687673b64bad602fd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-221d6affc0962df687673b64bad602fd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-221d6affc0962df687673b64bad602fd", [d], options); $("#flot-221d6affc0962df687673b64bad602fd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-221d6affc0962df687673b64bad602fd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-221d6affc0962df687673b64bad602fd-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.23
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2a6ade70efe3067b35786728bfe6056b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2a6ade70efe3067b35786728bfe6056b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2a6ade70efe3067b35786728bfe6056b", [d], options); $("#flot-2a6ade70efe3067b35786728bfe6056b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2a6ade70efe3067b35786728bfe6056b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2a6ade70efe3067b35786728bfe6056b-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-17aa203aa05c8573aa7c8cf06ea939d4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-17aa203aa05c8573aa7c8cf06ea939d4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-17aa203aa05c8573aa7c8cf06ea939d4", [d], options); $("#flot-17aa203aa05c8573aa7c8cf06ea939d4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-17aa203aa05c8573aa7c8cf06ea939d4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-17aa203aa05c8573aa7c8cf06ea939d4-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.22
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-55490cfacc3045421a7ef902aa89a355" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-55490cfacc3045421a7ef902aa89a355-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-55490cfacc3045421a7ef902aa89a355", [d], options); $("#flot-55490cfacc3045421a7ef902aa89a355").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-55490cfacc3045421a7ef902aa89a355-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-55490cfacc3045421a7ef902aa89a355-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-07630de336f42253ee8b30e63af52a15" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-07630de336f42253ee8b30e63af52a15-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-07630de336f42253ee8b30e63af52a15", [d], options); $("#flot-07630de336f42253ee8b30e63af52a15").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-07630de336f42253ee8b30e63af52a15-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-07630de336f42253ee8b30e63af52a15-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.21
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4c260c495531d5e927a0743a322e1b2e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4c260c495531d5e927a0743a322e1b2e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4c260c495531d5e927a0743a322e1b2e", [d], options); $("#flot-4c260c495531d5e927a0743a322e1b2e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4c260c495531d5e927a0743a322e1b2e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4c260c495531d5e927a0743a322e1b2e-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4e3c1bb1f6bf99438045f8955a5737ad" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4e3c1bb1f6bf99438045f8955a5737ad-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4e3c1bb1f6bf99438045f8955a5737ad", [d], options); $("#flot-4e3c1bb1f6bf99438045f8955a5737ad").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4e3c1bb1f6bf99438045f8955a5737ad-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4e3c1bb1f6bf99438045f8955a5737ad-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.20
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ae68c1ed75c8308caa14a2d6899b9a6d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ae68c1ed75c8308caa14a2d6899b9a6d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ae68c1ed75c8308caa14a2d6899b9a6d", [d], options); $("#flot-ae68c1ed75c8308caa14a2d6899b9a6d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ae68c1ed75c8308caa14a2d6899b9a6d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ae68c1ed75c8308caa14a2d6899b9a6d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bf4abebd29f16921bf6a82fcb4abbab0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bf4abebd29f16921bf6a82fcb4abbab0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bf4abebd29f16921bf6a82fcb4abbab0", [d], options); $("#flot-bf4abebd29f16921bf6a82fcb4abbab0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bf4abebd29f16921bf6a82fcb4abbab0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bf4abebd29f16921bf6a82fcb4abbab0-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.19
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-35ed735c3b373381ff13cbe47fb54f27" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-35ed735c3b373381ff13cbe47fb54f27-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-35ed735c3b373381ff13cbe47fb54f27", [d], options); $("#flot-35ed735c3b373381ff13cbe47fb54f27").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-35ed735c3b373381ff13cbe47fb54f27-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-35ed735c3b373381ff13cbe47fb54f27-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4fcf6dc350cfb2249cdde5da3a466a42" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4fcf6dc350cfb2249cdde5da3a466a42-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4fcf6dc350cfb2249cdde5da3a466a42", [d], options); $("#flot-4fcf6dc350cfb2249cdde5da3a466a42").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4fcf6dc350cfb2249cdde5da3a466a42-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4fcf6dc350cfb2249cdde5da3a466a42-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.18
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dd765afc7aca40b54520e53dd0102575" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dd765afc7aca40b54520e53dd0102575-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dd765afc7aca40b54520e53dd0102575", [d], options); $("#flot-dd765afc7aca40b54520e53dd0102575").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dd765afc7aca40b54520e53dd0102575-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dd765afc7aca40b54520e53dd0102575-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d3f59a1906a6417fee366fc15f81c860" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d3f59a1906a6417fee366fc15f81c860-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d3f59a1906a6417fee366fc15f81c860", [d], options); $("#flot-d3f59a1906a6417fee366fc15f81c860").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d3f59a1906a6417fee366fc15f81c860-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d3f59a1906a6417fee366fc15f81c860-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.17
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-089a5aec92caec49dac67ab7d456d1bd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-089a5aec92caec49dac67ab7d456d1bd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-089a5aec92caec49dac67ab7d456d1bd", [d], options); $("#flot-089a5aec92caec49dac67ab7d456d1bd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-089a5aec92caec49dac67ab7d456d1bd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-089a5aec92caec49dac67ab7d456d1bd-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f9d492136fbc84a8a02dc84b05a1882f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f9d492136fbc84a8a02dc84b05a1882f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f9d492136fbc84a8a02dc84b05a1882f", [d], options); $("#flot-f9d492136fbc84a8a02dc84b05a1882f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f9d492136fbc84a8a02dc84b05a1882f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f9d492136fbc84a8a02dc84b05a1882f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.16
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f045b9a9116e3e20055043811a712d1f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f045b9a9116e3e20055043811a712d1f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f045b9a9116e3e20055043811a712d1f", [d], options); $("#flot-f045b9a9116e3e20055043811a712d1f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f045b9a9116e3e20055043811a712d1f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f045b9a9116e3e20055043811a712d1f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1b302c72a8711242764b490be39afbb2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1b302c72a8711242764b490be39afbb2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1b302c72a8711242764b490be39afbb2", [d], options); $("#flot-1b302c72a8711242764b490be39afbb2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1b302c72a8711242764b490be39afbb2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1b302c72a8711242764b490be39afbb2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.15
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-89b4ba779590ccf0ab534b00541e8a64" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-89b4ba779590ccf0ab534b00541e8a64-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-89b4ba779590ccf0ab534b00541e8a64", [d], options); $("#flot-89b4ba779590ccf0ab534b00541e8a64").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-89b4ba779590ccf0ab534b00541e8a64-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-89b4ba779590ccf0ab534b00541e8a64-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-884c26b6073e3091f96e2f899f7bf5f9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-884c26b6073e3091f96e2f899f7bf5f9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-884c26b6073e3091f96e2f899f7bf5f9", [d], options); $("#flot-884c26b6073e3091f96e2f899f7bf5f9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-884c26b6073e3091f96e2f899f7bf5f9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-884c26b6073e3091f96e2f899f7bf5f9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.14
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-078365050c829da396b7c4f37755a5a4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-078365050c829da396b7c4f37755a5a4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-078365050c829da396b7c4f37755a5a4", [d], options); $("#flot-078365050c829da396b7c4f37755a5a4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-078365050c829da396b7c4f37755a5a4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-078365050c829da396b7c4f37755a5a4-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bdf9c38671e74ac65c938219355d0bc1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bdf9c38671e74ac65c938219355d0bc1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bdf9c38671e74ac65c938219355d0bc1", [d], options); $("#flot-bdf9c38671e74ac65c938219355d0bc1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bdf9c38671e74ac65c938219355d0bc1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bdf9c38671e74ac65c938219355d0bc1-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.13
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-708c61df8d1ce2216738d4c05737288c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-708c61df8d1ce2216738d4c05737288c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-708c61df8d1ce2216738d4c05737288c", [d], options); $("#flot-708c61df8d1ce2216738d4c05737288c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-708c61df8d1ce2216738d4c05737288c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-708c61df8d1ce2216738d4c05737288c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-64ff3e9d53166af2c342d02a7f1448e7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-64ff3e9d53166af2c342d02a7f1448e7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-64ff3e9d53166af2c342d02a7f1448e7", [d], options); $("#flot-64ff3e9d53166af2c342d02a7f1448e7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-64ff3e9d53166af2c342d02a7f1448e7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-64ff3e9d53166af2c342d02a7f1448e7-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.12
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d925fb36b6baa851aab644a14d891840" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d925fb36b6baa851aab644a14d891840-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d925fb36b6baa851aab644a14d891840", [d], options); $("#flot-d925fb36b6baa851aab644a14d891840").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d925fb36b6baa851aab644a14d891840-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d925fb36b6baa851aab644a14d891840-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1b104be78a3fa417c637154afb90cfc7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1b104be78a3fa417c637154afb90cfc7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1b104be78a3fa417c637154afb90cfc7", [d], options); $("#flot-1b104be78a3fa417c637154afb90cfc7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1b104be78a3fa417c637154afb90cfc7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1b104be78a3fa417c637154afb90cfc7-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.11
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8db3301620295d6b6518804d3f7954fb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8db3301620295d6b6518804d3f7954fb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8db3301620295d6b6518804d3f7954fb", [d], options); $("#flot-8db3301620295d6b6518804d3f7954fb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8db3301620295d6b6518804d3f7954fb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8db3301620295d6b6518804d3f7954fb-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-add68aaa0cba6f07a6220ebefc0fec0a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-add68aaa0cba6f07a6220ebefc0fec0a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-add68aaa0cba6f07a6220ebefc0fec0a", [d], options); $("#flot-add68aaa0cba6f07a6220ebefc0fec0a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-add68aaa0cba6f07a6220ebefc0fec0a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-add68aaa0cba6f07a6220ebefc0fec0a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.10
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f25d3770ee6fd61a432498162bbf57b1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f25d3770ee6fd61a432498162bbf57b1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f25d3770ee6fd61a432498162bbf57b1", [d], options); $("#flot-f25d3770ee6fd61a432498162bbf57b1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f25d3770ee6fd61a432498162bbf57b1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f25d3770ee6fd61a432498162bbf57b1-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a5c7522a76fa4490c494f75503a0c188" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a5c7522a76fa4490c494f75503a0c188-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a5c7522a76fa4490c494f75503a0c188", [d], options); $("#flot-a5c7522a76fa4490c494f75503a0c188").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a5c7522a76fa4490c494f75503a0c188-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a5c7522a76fa4490c494f75503a0c188-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.9
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b98af58921d28d8b50d77e573168e69f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b98af58921d28d8b50d77e573168e69f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b98af58921d28d8b50d77e573168e69f", [d], options); $("#flot-b98af58921d28d8b50d77e573168e69f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b98af58921d28d8b50d77e573168e69f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b98af58921d28d8b50d77e573168e69f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-98258c19b2b073b4f5c6dd0aeb0fb739" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-98258c19b2b073b4f5c6dd0aeb0fb739-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-98258c19b2b073b4f5c6dd0aeb0fb739", [d], options); $("#flot-98258c19b2b073b4f5c6dd0aeb0fb739").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-98258c19b2b073b4f5c6dd0aeb0fb739-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-98258c19b2b073b4f5c6dd0aeb0fb739-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.8
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a4c8845c3bfa912faf629d771cc4071c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a4c8845c3bfa912faf629d771cc4071c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a4c8845c3bfa912faf629d771cc4071c", [d], options); $("#flot-a4c8845c3bfa912faf629d771cc4071c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a4c8845c3bfa912faf629d771cc4071c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a4c8845c3bfa912faf629d771cc4071c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-78870f226dbd14fbc5439af4a66a42b6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-78870f226dbd14fbc5439af4a66a42b6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-78870f226dbd14fbc5439af4a66a42b6", [d], options); $("#flot-78870f226dbd14fbc5439af4a66a42b6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-78870f226dbd14fbc5439af4a66a42b6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-78870f226dbd14fbc5439af4a66a42b6-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.7
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b85ff4a0f2ba370bbe92e09d433f4f72" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b85ff4a0f2ba370bbe92e09d433f4f72-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b85ff4a0f2ba370bbe92e09d433f4f72", [d], options); $("#flot-b85ff4a0f2ba370bbe92e09d433f4f72").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b85ff4a0f2ba370bbe92e09d433f4f72-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b85ff4a0f2ba370bbe92e09d433f4f72-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-295dbe036f0726dec5a2058c176ad49b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-295dbe036f0726dec5a2058c176ad49b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-295dbe036f0726dec5a2058c176ad49b", [d], options); $("#flot-295dbe036f0726dec5a2058c176ad49b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-295dbe036f0726dec5a2058c176ad49b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-295dbe036f0726dec5a2058c176ad49b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.6
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ac76e376c45d891af7fe1d7d9ad37280" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ac76e376c45d891af7fe1d7d9ad37280-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ac76e376c45d891af7fe1d7d9ad37280", [d], options); $("#flot-ac76e376c45d891af7fe1d7d9ad37280").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ac76e376c45d891af7fe1d7d9ad37280-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ac76e376c45d891af7fe1d7d9ad37280-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a82778ab5d488b7e33d03c405997d240" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a82778ab5d488b7e33d03c405997d240-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a82778ab5d488b7e33d03c405997d240", [d], options); $("#flot-a82778ab5d488b7e33d03c405997d240").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a82778ab5d488b7e33d03c405997d240-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a82778ab5d488b7e33d03c405997d240-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.5
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a9095ecd9ebe2a8c843999e84016908d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a9095ecd9ebe2a8c843999e84016908d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a9095ecd9ebe2a8c843999e84016908d", [d], options); $("#flot-a9095ecd9ebe2a8c843999e84016908d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a9095ecd9ebe2a8c843999e84016908d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a9095ecd9ebe2a8c843999e84016908d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b37adf087e9855dd605a1af68a8cb88f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b37adf087e9855dd605a1af68a8cb88f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b37adf087e9855dd605a1af68a8cb88f", [d], options); $("#flot-b37adf087e9855dd605a1af68a8cb88f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b37adf087e9855dd605a1af68a8cb88f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b37adf087e9855dd605a1af68a8cb88f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.4
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-eb706ea8e32e8bcde6ef9f8b387aa188" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-eb706ea8e32e8bcde6ef9f8b387aa188-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-eb706ea8e32e8bcde6ef9f8b387aa188", [d], options); $("#flot-eb706ea8e32e8bcde6ef9f8b387aa188").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-eb706ea8e32e8bcde6ef9f8b387aa188-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-eb706ea8e32e8bcde6ef9f8b387aa188-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-40d4d6a265697dc9abc0d106d192b8c2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-40d4d6a265697dc9abc0d106d192b8c2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-40d4d6a265697dc9abc0d106d192b8c2", [d], options); $("#flot-40d4d6a265697dc9abc0d106d192b8c2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-40d4d6a265697dc9abc0d106d192b8c2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-40d4d6a265697dc9abc0d106d192b8c2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.3
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b01b4dd9172b3a4a986f61307b8ca734" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b01b4dd9172b3a4a986f61307b8ca734-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b01b4dd9172b3a4a986f61307b8ca734", [d], options); $("#flot-b01b4dd9172b3a4a986f61307b8ca734").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b01b4dd9172b3a4a986f61307b8ca734-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b01b4dd9172b3a4a986f61307b8ca734-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c8ade630e0662c63d03b767504b5373e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c8ade630e0662c63d03b767504b5373e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c8ade630e0662c63d03b767504b5373e", [d], options); $("#flot-c8ade630e0662c63d03b767504b5373e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c8ade630e0662c63d03b767504b5373e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c8ade630e0662c63d03b767504b5373e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.2
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-21142ab7ae61271b52c57a76435c70aa" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-21142ab7ae61271b52c57a76435c70aa-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-21142ab7ae61271b52c57a76435c70aa", [d], options); $("#flot-21142ab7ae61271b52c57a76435c70aa").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-21142ab7ae61271b52c57a76435c70aa-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-21142ab7ae61271b52c57a76435c70aa-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-af45fea86f0ec88ad42aaa831117076a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-af45fea86f0ec88ad42aaa831117076a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-af45fea86f0ec88ad42aaa831117076a", [d], options); $("#flot-af45fea86f0ec88ad42aaa831117076a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-af45fea86f0ec88ad42aaa831117076a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-af45fea86f0ec88ad42aaa831117076a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.1
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-940b71bc3f1b97a9619f62f5989c51a3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-940b71bc3f1b97a9619f62f5989c51a3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-940b71bc3f1b97a9619f62f5989c51a3", [d], options); $("#flot-940b71bc3f1b97a9619f62f5989c51a3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-940b71bc3f1b97a9619f62f5989c51a3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-940b71bc3f1b97a9619f62f5989c51a3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bfc7515a36f49020bbea373cb654fedb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bfc7515a36f49020bbea373cb654fedb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bfc7515a36f49020bbea373cb654fedb", [d], options); $("#flot-bfc7515a36f49020bbea373cb654fedb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bfc7515a36f49020bbea373cb654fedb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bfc7515a36f49020bbea373cb654fedb-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.1.0
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1e1181edffb98d656d8992b6dd086b61" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1e1181edffb98d656d8992b6dd086b61-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1e1181edffb98d656d8992b6dd086b61", [d], options); $("#flot-1e1181edffb98d656d8992b6dd086b61").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1e1181edffb98d656d8992b6dd086b61-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1e1181edffb98d656d8992b6dd086b61-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1b6617fccd3d1b24b8bcc86afcba0b72" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1b6617fccd3d1b24b8bcc86afcba0b72-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1b6617fccd3d1b24b8bcc86afcba0b72", [d], options); $("#flot-1b6617fccd3d1b24b8bcc86afcba0b72").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1b6617fccd3d1b24b8bcc86afcba0b72-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1b6617fccd3d1b24b8bcc86afcba0b72-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.33
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e995ace9950c8784d7c1aa6cc77e84bd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e995ace9950c8784d7c1aa6cc77e84bd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e995ace9950c8784d7c1aa6cc77e84bd", [d], options); $("#flot-e995ace9950c8784d7c1aa6cc77e84bd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e995ace9950c8784d7c1aa6cc77e84bd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e995ace9950c8784d7c1aa6cc77e84bd-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a46997836e84a440a62d30ea189825a2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a46997836e84a440a62d30ea189825a2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a46997836e84a440a62d30ea189825a2", [d], options); $("#flot-a46997836e84a440a62d30ea189825a2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a46997836e84a440a62d30ea189825a2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a46997836e84a440a62d30ea189825a2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.32
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-10e4cfa34a474ebc84d2c15e2c2b3e21" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-10e4cfa34a474ebc84d2c15e2c2b3e21-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-10e4cfa34a474ebc84d2c15e2c2b3e21", [d], options); $("#flot-10e4cfa34a474ebc84d2c15e2c2b3e21").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-10e4cfa34a474ebc84d2c15e2c2b3e21-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-10e4cfa34a474ebc84d2c15e2c2b3e21-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ef399334cad56a4c600280641c991a31" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ef399334cad56a4c600280641c991a31-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ef399334cad56a4c600280641c991a31", [d], options); $("#flot-ef399334cad56a4c600280641c991a31").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ef399334cad56a4c600280641c991a31-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ef399334cad56a4c600280641c991a31-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.31
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a0b2f6f40da124df2abeedd371ad9c09" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a0b2f6f40da124df2abeedd371ad9c09-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a0b2f6f40da124df2abeedd371ad9c09", [d], options); $("#flot-a0b2f6f40da124df2abeedd371ad9c09").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a0b2f6f40da124df2abeedd371ad9c09-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a0b2f6f40da124df2abeedd371ad9c09-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-387dd00a25181059a1f8b06070cd87a2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-387dd00a25181059a1f8b06070cd87a2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-387dd00a25181059a1f8b06070cd87a2", [d], options); $("#flot-387dd00a25181059a1f8b06070cd87a2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-387dd00a25181059a1f8b06070cd87a2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-387dd00a25181059a1f8b06070cd87a2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.30
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4e9589a150feef4eeb776c0abc3f0d57" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4e9589a150feef4eeb776c0abc3f0d57-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4e9589a150feef4eeb776c0abc3f0d57", [d], options); $("#flot-4e9589a150feef4eeb776c0abc3f0d57").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4e9589a150feef4eeb776c0abc3f0d57-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4e9589a150feef4eeb776c0abc3f0d57-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ec642759d50766ad4a5553e84ae6ad72" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ec642759d50766ad4a5553e84ae6ad72-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ec642759d50766ad4a5553e84ae6ad72", [d], options); $("#flot-ec642759d50766ad4a5553e84ae6ad72").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ec642759d50766ad4a5553e84ae6ad72-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ec642759d50766ad4a5553e84ae6ad72-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.29
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7ac16fdc1b83a4b4f55064831dffe629" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7ac16fdc1b83a4b4f55064831dffe629-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7ac16fdc1b83a4b4f55064831dffe629", [d], options); $("#flot-7ac16fdc1b83a4b4f55064831dffe629").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7ac16fdc1b83a4b4f55064831dffe629-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7ac16fdc1b83a4b4f55064831dffe629-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cfcd091d075fcb7187243d8cf18f32c1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cfcd091d075fcb7187243d8cf18f32c1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cfcd091d075fcb7187243d8cf18f32c1", [d], options); $("#flot-cfcd091d075fcb7187243d8cf18f32c1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cfcd091d075fcb7187243d8cf18f32c1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cfcd091d075fcb7187243d8cf18f32c1-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.28
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-28a4caa5d38db9c449474fa389aba738" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-28a4caa5d38db9c449474fa389aba738-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-28a4caa5d38db9c449474fa389aba738", [d], options); $("#flot-28a4caa5d38db9c449474fa389aba738").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-28a4caa5d38db9c449474fa389aba738-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-28a4caa5d38db9c449474fa389aba738-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a468e5a69485bf585a67b787c862d06b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a468e5a69485bf585a67b787c862d06b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a468e5a69485bf585a67b787c862d06b", [d], options); $("#flot-a468e5a69485bf585a67b787c862d06b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a468e5a69485bf585a67b787c862d06b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a468e5a69485bf585a67b787c862d06b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.27
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c279788af311a54fc1b0bf3231b4031d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c279788af311a54fc1b0bf3231b4031d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c279788af311a54fc1b0bf3231b4031d", [d], options); $("#flot-c279788af311a54fc1b0bf3231b4031d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c279788af311a54fc1b0bf3231b4031d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c279788af311a54fc1b0bf3231b4031d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c9fd7f740c0efca7b9f6d38d8943b9ac" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c9fd7f740c0efca7b9f6d38d8943b9ac-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c9fd7f740c0efca7b9f6d38d8943b9ac", [d], options); $("#flot-c9fd7f740c0efca7b9f6d38d8943b9ac").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c9fd7f740c0efca7b9f6d38d8943b9ac-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c9fd7f740c0efca7b9f6d38d8943b9ac-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.26
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-060364a35051c347f7c0cb5ca551b6f4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-060364a35051c347f7c0cb5ca551b6f4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-060364a35051c347f7c0cb5ca551b6f4", [d], options); $("#flot-060364a35051c347f7c0cb5ca551b6f4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-060364a35051c347f7c0cb5ca551b6f4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-060364a35051c347f7c0cb5ca551b6f4-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8b0e258d5dc611837c7fd8a3a6a09498" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8b0e258d5dc611837c7fd8a3a6a09498-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8b0e258d5dc611837c7fd8a3a6a09498", [d], options); $("#flot-8b0e258d5dc611837c7fd8a3a6a09498").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8b0e258d5dc611837c7fd8a3a6a09498-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8b0e258d5dc611837c7fd8a3a6a09498-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.25
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-96879b36e477445a702ea7339ee6db6c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-96879b36e477445a702ea7339ee6db6c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-96879b36e477445a702ea7339ee6db6c", [d], options); $("#flot-96879b36e477445a702ea7339ee6db6c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-96879b36e477445a702ea7339ee6db6c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-96879b36e477445a702ea7339ee6db6c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-52b27217db9a8495eb8e303c240d08c2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-52b27217db9a8495eb8e303c240d08c2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-52b27217db9a8495eb8e303c240d08c2", [d], options); $("#flot-52b27217db9a8495eb8e303c240d08c2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-52b27217db9a8495eb8e303c240d08c2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-52b27217db9a8495eb8e303c240d08c2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.24
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-242903cb2bd3d12c28da5f83f78b35c3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-242903cb2bd3d12c28da5f83f78b35c3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-242903cb2bd3d12c28da5f83f78b35c3", [d], options); $("#flot-242903cb2bd3d12c28da5f83f78b35c3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-242903cb2bd3d12c28da5f83f78b35c3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-242903cb2bd3d12c28da5f83f78b35c3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7560ad9bd57cfd87471a8c8eee9ff84d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7560ad9bd57cfd87471a8c8eee9ff84d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7560ad9bd57cfd87471a8c8eee9ff84d", [d], options); $("#flot-7560ad9bd57cfd87471a8c8eee9ff84d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7560ad9bd57cfd87471a8c8eee9ff84d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7560ad9bd57cfd87471a8c8eee9ff84d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.23
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-61488f06655b600e14feb83cd51786d0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-61488f06655b600e14feb83cd51786d0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-61488f06655b600e14feb83cd51786d0", [d], options); $("#flot-61488f06655b600e14feb83cd51786d0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-61488f06655b600e14feb83cd51786d0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-61488f06655b600e14feb83cd51786d0-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-41578bd6fd98c9062b438a7e3ec51537" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-41578bd6fd98c9062b438a7e3ec51537-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-41578bd6fd98c9062b438a7e3ec51537", [d], options); $("#flot-41578bd6fd98c9062b438a7e3ec51537").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-41578bd6fd98c9062b438a7e3ec51537-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-41578bd6fd98c9062b438a7e3ec51537-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.22
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2dd60009fb1ff48b4169c784ac239d6d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2dd60009fb1ff48b4169c784ac239d6d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2dd60009fb1ff48b4169c784ac239d6d", [d], options); $("#flot-2dd60009fb1ff48b4169c784ac239d6d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2dd60009fb1ff48b4169c784ac239d6d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2dd60009fb1ff48b4169c784ac239d6d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-37c95cdc71aa39453e882bc6d7798e2c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-37c95cdc71aa39453e882bc6d7798e2c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-37c95cdc71aa39453e882bc6d7798e2c", [d], options); $("#flot-37c95cdc71aa39453e882bc6d7798e2c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-37c95cdc71aa39453e882bc6d7798e2c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-37c95cdc71aa39453e882bc6d7798e2c-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.21
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d89fb71139cd763e2e88d7a8dd24a2a7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d89fb71139cd763e2e88d7a8dd24a2a7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d89fb71139cd763e2e88d7a8dd24a2a7", [d], options); $("#flot-d89fb71139cd763e2e88d7a8dd24a2a7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d89fb71139cd763e2e88d7a8dd24a2a7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d89fb71139cd763e2e88d7a8dd24a2a7-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b92dd6f4ea737bfb75fe86f8e2aa004e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b92dd6f4ea737bfb75fe86f8e2aa004e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b92dd6f4ea737bfb75fe86f8e2aa004e", [d], options); $("#flot-b92dd6f4ea737bfb75fe86f8e2aa004e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b92dd6f4ea737bfb75fe86f8e2aa004e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b92dd6f4ea737bfb75fe86f8e2aa004e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.20
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-77d242d26f351a0b713b6a58cfabc2c3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-77d242d26f351a0b713b6a58cfabc2c3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-77d242d26f351a0b713b6a58cfabc2c3", [d], options); $("#flot-77d242d26f351a0b713b6a58cfabc2c3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-77d242d26f351a0b713b6a58cfabc2c3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-77d242d26f351a0b713b6a58cfabc2c3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d54012e01699b7c8718dd4574f3767a1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d54012e01699b7c8718dd4574f3767a1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d54012e01699b7c8718dd4574f3767a1", [d], options); $("#flot-d54012e01699b7c8718dd4574f3767a1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d54012e01699b7c8718dd4574f3767a1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d54012e01699b7c8718dd4574f3767a1-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.19
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9473fd4483d9a74529fddfd1dfc16384" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9473fd4483d9a74529fddfd1dfc16384-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9473fd4483d9a74529fddfd1dfc16384", [d], options); $("#flot-9473fd4483d9a74529fddfd1dfc16384").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9473fd4483d9a74529fddfd1dfc16384-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9473fd4483d9a74529fddfd1dfc16384-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-fd933a075b3d654e14540f73483f25a3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-fd933a075b3d654e14540f73483f25a3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-fd933a075b3d654e14540f73483f25a3", [d], options); $("#flot-fd933a075b3d654e14540f73483f25a3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-fd933a075b3d654e14540f73483f25a3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-fd933a075b3d654e14540f73483f25a3-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.18
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-957d69a77e6adaf780ee179303385a72" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-957d69a77e6adaf780ee179303385a72-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-957d69a77e6adaf780ee179303385a72", [d], options); $("#flot-957d69a77e6adaf780ee179303385a72").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-957d69a77e6adaf780ee179303385a72-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-957d69a77e6adaf780ee179303385a72-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b0c05950f0245c1772d796bb47c2f055" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b0c05950f0245c1772d796bb47c2f055-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b0c05950f0245c1772d796bb47c2f055", [d], options); $("#flot-b0c05950f0245c1772d796bb47c2f055").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b0c05950f0245c1772d796bb47c2f055-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b0c05950f0245c1772d796bb47c2f055-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.17
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e1525e4955fd9b581d1cabcbdb014e1a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e1525e4955fd9b581d1cabcbdb014e1a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e1525e4955fd9b581d1cabcbdb014e1a", [d], options); $("#flot-e1525e4955fd9b581d1cabcbdb014e1a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e1525e4955fd9b581d1cabcbdb014e1a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e1525e4955fd9b581d1cabcbdb014e1a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-68b4a6aefe223ba82f97d94be1afe7b0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-68b4a6aefe223ba82f97d94be1afe7b0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-68b4a6aefe223ba82f97d94be1afe7b0", [d], options); $("#flot-68b4a6aefe223ba82f97d94be1afe7b0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-68b4a6aefe223ba82f97d94be1afe7b0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-68b4a6aefe223ba82f97d94be1afe7b0-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.16
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-eba0a85876e541741ab55db3966e8286" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-eba0a85876e541741ab55db3966e8286-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-eba0a85876e541741ab55db3966e8286", [d], options); $("#flot-eba0a85876e541741ab55db3966e8286").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-eba0a85876e541741ab55db3966e8286-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-eba0a85876e541741ab55db3966e8286-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2109ecf9595b215db5c74d9afe56f764" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2109ecf9595b215db5c74d9afe56f764-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2109ecf9595b215db5c74d9afe56f764", [d], options); $("#flot-2109ecf9595b215db5c74d9afe56f764").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2109ecf9595b215db5c74d9afe56f764-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2109ecf9595b215db5c74d9afe56f764-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.15
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-05cfb412c7e7b05860810890dd88da56" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-05cfb412c7e7b05860810890dd88da56-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-05cfb412c7e7b05860810890dd88da56", [d], options); $("#flot-05cfb412c7e7b05860810890dd88da56").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-05cfb412c7e7b05860810890dd88da56-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-05cfb412c7e7b05860810890dd88da56-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7e93390c64c1cb4166c5e73001963367" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7e93390c64c1cb4166c5e73001963367-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7e93390c64c1cb4166c5e73001963367", [d], options); $("#flot-7e93390c64c1cb4166c5e73001963367").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7e93390c64c1cb4166c5e73001963367-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7e93390c64c1cb4166c5e73001963367-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.14
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8ff38df2078b208d63351106aa6d0f7d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8ff38df2078b208d63351106aa6d0f7d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8ff38df2078b208d63351106aa6d0f7d", [d], options); $("#flot-8ff38df2078b208d63351106aa6d0f7d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8ff38df2078b208d63351106aa6d0f7d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8ff38df2078b208d63351106aa6d0f7d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e932f4f6022218166f34854358549afd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e932f4f6022218166f34854358549afd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e932f4f6022218166f34854358549afd", [d], options); $("#flot-e932f4f6022218166f34854358549afd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e932f4f6022218166f34854358549afd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e932f4f6022218166f34854358549afd-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.13
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8d7575808e3b61a0d1ebbc8661d0189d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8d7575808e3b61a0d1ebbc8661d0189d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8d7575808e3b61a0d1ebbc8661d0189d", [d], options); $("#flot-8d7575808e3b61a0d1ebbc8661d0189d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8d7575808e3b61a0d1ebbc8661d0189d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8d7575808e3b61a0d1ebbc8661d0189d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cc6ead42e3b2a5075f5bb903e528e6ca" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cc6ead42e3b2a5075f5bb903e528e6ca-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cc6ead42e3b2a5075f5bb903e528e6ca", [d], options); $("#flot-cc6ead42e3b2a5075f5bb903e528e6ca").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cc6ead42e3b2a5075f5bb903e528e6ca-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cc6ead42e3b2a5075f5bb903e528e6ca-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.12
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4edd8951bda4957834fc207a0751f6ae" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4edd8951bda4957834fc207a0751f6ae-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4edd8951bda4957834fc207a0751f6ae", [d], options); $("#flot-4edd8951bda4957834fc207a0751f6ae").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4edd8951bda4957834fc207a0751f6ae-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4edd8951bda4957834fc207a0751f6ae-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9067a6afc5637135ab2ed52557d6f35f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9067a6afc5637135ab2ed52557d6f35f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9067a6afc5637135ab2ed52557d6f35f", [d], options); $("#flot-9067a6afc5637135ab2ed52557d6f35f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9067a6afc5637135ab2ed52557d6f35f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9067a6afc5637135ab2ed52557d6f35f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.11
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-35ef6d2f29e7266b53acf8321a816285" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-35ef6d2f29e7266b53acf8321a816285-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-35ef6d2f29e7266b53acf8321a816285", [d], options); $("#flot-35ef6d2f29e7266b53acf8321a816285").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-35ef6d2f29e7266b53acf8321a816285-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-35ef6d2f29e7266b53acf8321a816285-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-09aff93b476fced36ffeb589d1cde3bc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-09aff93b476fced36ffeb589d1cde3bc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-09aff93b476fced36ffeb589d1cde3bc", [d], options); $("#flot-09aff93b476fced36ffeb589d1cde3bc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-09aff93b476fced36ffeb589d1cde3bc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-09aff93b476fced36ffeb589d1cde3bc-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.10
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-97c92903f82f833f0f46ea4d2f2786d7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-97c92903f82f833f0f46ea4d2f2786d7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-97c92903f82f833f0f46ea4d2f2786d7", [d], options); $("#flot-97c92903f82f833f0f46ea4d2f2786d7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-97c92903f82f833f0f46ea4d2f2786d7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-97c92903f82f833f0f46ea4d2f2786d7-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-128af428a0f101e073c80d73ec070055" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-128af428a0f101e073c80d73ec070055-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-128af428a0f101e073c80d73ec070055", [d], options); $("#flot-128af428a0f101e073c80d73ec070055").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-128af428a0f101e073c80d73ec070055-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-128af428a0f101e073c80d73ec070055-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.9
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4c14c374f0b636882271789c265965fa" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4c14c374f0b636882271789c265965fa-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4c14c374f0b636882271789c265965fa", [d], options); $("#flot-4c14c374f0b636882271789c265965fa").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4c14c374f0b636882271789c265965fa-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4c14c374f0b636882271789c265965fa-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-913208007af418c0da7f722a3fe2edc5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-913208007af418c0da7f722a3fe2edc5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-913208007af418c0da7f722a3fe2edc5", [d], options); $("#flot-913208007af418c0da7f722a3fe2edc5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-913208007af418c0da7f722a3fe2edc5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-913208007af418c0da7f722a3fe2edc5-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.8
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2de2b1947b42d374947628df8c749a2f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2de2b1947b42d374947628df8c749a2f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2de2b1947b42d374947628df8c749a2f", [d], options); $("#flot-2de2b1947b42d374947628df8c749a2f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2de2b1947b42d374947628df8c749a2f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2de2b1947b42d374947628df8c749a2f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-30d9ecfc5ca098e4febc1f005027f1ca" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-30d9ecfc5ca098e4febc1f005027f1ca-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-30d9ecfc5ca098e4febc1f005027f1ca", [d], options); $("#flot-30d9ecfc5ca098e4febc1f005027f1ca").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-30d9ecfc5ca098e4febc1f005027f1ca-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-30d9ecfc5ca098e4febc1f005027f1ca-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.7
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-fb9ca1fbab656774e0a7b61071cc0c7b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-fb9ca1fbab656774e0a7b61071cc0c7b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-fb9ca1fbab656774e0a7b61071cc0c7b", [d], options); $("#flot-fb9ca1fbab656774e0a7b61071cc0c7b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-fb9ca1fbab656774e0a7b61071cc0c7b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-fb9ca1fbab656774e0a7b61071cc0c7b-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-38d0f43e11484a9e004365e4d6c4894b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-38d0f43e11484a9e004365e4d6c4894b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-38d0f43e11484a9e004365e4d6c4894b", [d], options); $("#flot-38d0f43e11484a9e004365e4d6c4894b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-38d0f43e11484a9e004365e4d6c4894b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-38d0f43e11484a9e004365e4d6c4894b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.6
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-25c3b948607e5aba0b66437b01539c93" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-25c3b948607e5aba0b66437b01539c93-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-25c3b948607e5aba0b66437b01539c93", [d], options); $("#flot-25c3b948607e5aba0b66437b01539c93").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-25c3b948607e5aba0b66437b01539c93-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-25c3b948607e5aba0b66437b01539c93-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c59ec61006343d90275efcf4c44064c5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c59ec61006343d90275efcf4c44064c5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c59ec61006343d90275efcf4c44064c5", [d], options); $("#flot-c59ec61006343d90275efcf4c44064c5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c59ec61006343d90275efcf4c44064c5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c59ec61006343d90275efcf4c44064c5-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.5
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6ca177e50523d13507cfd89c02aec6c1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6ca177e50523d13507cfd89c02aec6c1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6ca177e50523d13507cfd89c02aec6c1", [d], options); $("#flot-6ca177e50523d13507cfd89c02aec6c1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6ca177e50523d13507cfd89c02aec6c1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6ca177e50523d13507cfd89c02aec6c1-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-172fff05497ef9215b953840a42c1018" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-172fff05497ef9215b953840a42c1018-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-172fff05497ef9215b953840a42c1018", [d], options); $("#flot-172fff05497ef9215b953840a42c1018").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-172fff05497ef9215b953840a42c1018-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-172fff05497ef9215b953840a42c1018-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.4
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-439871ef6ae828b776f48c172af0b01f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-439871ef6ae828b776f48c172af0b01f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-439871ef6ae828b776f48c172af0b01f", [d], options); $("#flot-439871ef6ae828b776f48c172af0b01f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-439871ef6ae828b776f48c172af0b01f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-439871ef6ae828b776f48c172af0b01f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5fbc7e045b9a90032409c4d0f916999e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5fbc7e045b9a90032409c4d0f916999e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5fbc7e045b9a90032409c4d0f916999e", [d], options); $("#flot-5fbc7e045b9a90032409c4d0f916999e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5fbc7e045b9a90032409c4d0f916999e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5fbc7e045b9a90032409c4d0f916999e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.3
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d2236d6268c639ef8c3c8d9941a7b783" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d2236d6268c639ef8c3c8d9941a7b783-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d2236d6268c639ef8c3c8d9941a7b783", [d], options); $("#flot-d2236d6268c639ef8c3c8d9941a7b783").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d2236d6268c639ef8c3c8d9941a7b783-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d2236d6268c639ef8c3c8d9941a7b783-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9e0324a0a927fca07155da7f86ed6706" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9e0324a0a927fca07155da7f86ed6706-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9e0324a0a927fca07155da7f86ed6706", [d], options); $("#flot-9e0324a0a927fca07155da7f86ed6706").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9e0324a0a927fca07155da7f86ed6706-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9e0324a0a927fca07155da7f86ed6706-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.2
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b80d15c5def1cd0c90b7cbd210086282" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b80d15c5def1cd0c90b7cbd210086282-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b80d15c5def1cd0c90b7cbd210086282", [d], options); $("#flot-b80d15c5def1cd0c90b7cbd210086282").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b80d15c5def1cd0c90b7cbd210086282-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b80d15c5def1cd0c90b7cbd210086282-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d2237485a3ab5008a8c9d2da61f65b9e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d2237485a3ab5008a8c9d2da61f65b9e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d2237485a3ab5008a8c9d2da61f65b9e", [d], options); $("#flot-d2237485a3ab5008a8c9d2da61f65b9e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d2237485a3ab5008a8c9d2da61f65b9e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d2237485a3ab5008a8c9d2da61f65b9e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.1
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-34336bbea1125f9e0649f533a63ea90e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-34336bbea1125f9e0649f533a63ea90e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-34336bbea1125f9e0649f533a63ea90e", [d], options); $("#flot-34336bbea1125f9e0649f533a63ea90e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-34336bbea1125f9e0649f533a63ea90e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-34336bbea1125f9e0649f533a63ea90e-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8d9b5b7436a791e7e1d3285a81d77f71" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8d9b5b7436a791e7e1d3285a81d77f71-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8d9b5b7436a791e7e1d3285a81d77f71", [d], options); $("#flot-8d9b5b7436a791e7e1d3285a81d77f71").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8d9b5b7436a791e7e1d3285a81d77f71-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8d9b5b7436a791e7e1d3285a81d77f71-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 7.0.0
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b72680a23d854ba1ea91b754f489a5f6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b72680a23d854ba1ea91b754f489a5f6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b72680a23d854ba1ea91b754f489a5f6", [d], options); $("#flot-b72680a23d854ba1ea91b754f489a5f6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b72680a23d854ba1ea91b754f489a5f6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b72680a23d854ba1ea91b754f489a5f6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0b15263ed0ef7e4cff971e9ce08324b2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0b15263ed0ef7e4cff971e9ce08324b2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0b15263ed0ef7e4cff971e9ce08324b2", [d], options); $("#flot-0b15263ed0ef7e4cff971e9ce08324b2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0b15263ed0ef7e4cff971e9ce08324b2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0b15263ed0ef7e4cff971e9ce08324b2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.40
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1ca37be3b34139a6646436f1fa09e558" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1ca37be3b34139a6646436f1fa09e558-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1ca37be3b34139a6646436f1fa09e558", [d], options); $("#flot-1ca37be3b34139a6646436f1fa09e558").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1ca37be3b34139a6646436f1fa09e558-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1ca37be3b34139a6646436f1fa09e558-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9ceba6bd85e4242fbd41624a228b70f0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9ceba6bd85e4242fbd41624a228b70f0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9ceba6bd85e4242fbd41624a228b70f0", [d], options); $("#flot-9ceba6bd85e4242fbd41624a228b70f0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9ceba6bd85e4242fbd41624a228b70f0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9ceba6bd85e4242fbd41624a228b70f0-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.39
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b60ffba53cf8aef3f19259795fa1a6e7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b60ffba53cf8aef3f19259795fa1a6e7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b60ffba53cf8aef3f19259795fa1a6e7", [d], options); $("#flot-b60ffba53cf8aef3f19259795fa1a6e7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b60ffba53cf8aef3f19259795fa1a6e7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b60ffba53cf8aef3f19259795fa1a6e7-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7f598a97cd8094a7d1c169c535710470" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7f598a97cd8094a7d1c169c535710470-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7f598a97cd8094a7d1c169c535710470", [d], options); $("#flot-7f598a97cd8094a7d1c169c535710470").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7f598a97cd8094a7d1c169c535710470-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7f598a97cd8094a7d1c169c535710470-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.38
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4b30d9c25b3be62f5adfe14dd3a7c168" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4b30d9c25b3be62f5adfe14dd3a7c168-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4b30d9c25b3be62f5adfe14dd3a7c168", [d], options); $("#flot-4b30d9c25b3be62f5adfe14dd3a7c168").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4b30d9c25b3be62f5adfe14dd3a7c168-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4b30d9c25b3be62f5adfe14dd3a7c168-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-78f35fecf4e248d2d09e113ad0be3d67" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-78f35fecf4e248d2d09e113ad0be3d67-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-78f35fecf4e248d2d09e113ad0be3d67", [d], options); $("#flot-78f35fecf4e248d2d09e113ad0be3d67").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-78f35fecf4e248d2d09e113ad0be3d67-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-78f35fecf4e248d2d09e113ad0be3d67-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.37
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-eec1cadfd85dc6aefbe17e985a50d411" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-eec1cadfd85dc6aefbe17e985a50d411-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-eec1cadfd85dc6aefbe17e985a50d411", [d], options); $("#flot-eec1cadfd85dc6aefbe17e985a50d411").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-eec1cadfd85dc6aefbe17e985a50d411-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-eec1cadfd85dc6aefbe17e985a50d411-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d64bd7000a218933b56a92e378f6706d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d64bd7000a218933b56a92e378f6706d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d64bd7000a218933b56a92e378f6706d", [d], options); $("#flot-d64bd7000a218933b56a92e378f6706d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d64bd7000a218933b56a92e378f6706d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d64bd7000a218933b56a92e378f6706d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.36
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2de0750cc1a753acd1c99f4f4dbe125f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2de0750cc1a753acd1c99f4f4dbe125f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2de0750cc1a753acd1c99f4f4dbe125f", [d], options); $("#flot-2de0750cc1a753acd1c99f4f4dbe125f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2de0750cc1a753acd1c99f4f4dbe125f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2de0750cc1a753acd1c99f4f4dbe125f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-03e823177652a4cc0acb956c1f8f7ec0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-03e823177652a4cc0acb956c1f8f7ec0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-03e823177652a4cc0acb956c1f8f7ec0", [d], options); $("#flot-03e823177652a4cc0acb956c1f8f7ec0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-03e823177652a4cc0acb956c1f8f7ec0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-03e823177652a4cc0acb956c1f8f7ec0-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.35
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c557d5b7ce4114d080b32e076032959e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c557d5b7ce4114d080b32e076032959e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c557d5b7ce4114d080b32e076032959e", [d], options); $("#flot-c557d5b7ce4114d080b32e076032959e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c557d5b7ce4114d080b32e076032959e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c557d5b7ce4114d080b32e076032959e-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-899ca2e08bebe5382a3b515e9c8b52a4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-899ca2e08bebe5382a3b515e9c8b52a4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-899ca2e08bebe5382a3b515e9c8b52a4", [d], options); $("#flot-899ca2e08bebe5382a3b515e9c8b52a4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-899ca2e08bebe5382a3b515e9c8b52a4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-899ca2e08bebe5382a3b515e9c8b52a4-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.34
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-00c06ff3805c90ad07a38008e64250fe" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-00c06ff3805c90ad07a38008e64250fe-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-00c06ff3805c90ad07a38008e64250fe", [d], options); $("#flot-00c06ff3805c90ad07a38008e64250fe").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-00c06ff3805c90ad07a38008e64250fe-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-00c06ff3805c90ad07a38008e64250fe-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-88d6572737be11c3416635950ed0621d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-88d6572737be11c3416635950ed0621d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-88d6572737be11c3416635950ed0621d", [d], options); $("#flot-88d6572737be11c3416635950ed0621d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-88d6572737be11c3416635950ed0621d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-88d6572737be11c3416635950ed0621d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.33
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e898df23938ca22c12c7c37152810399" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e898df23938ca22c12c7c37152810399-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e898df23938ca22c12c7c37152810399", [d], options); $("#flot-e898df23938ca22c12c7c37152810399").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e898df23938ca22c12c7c37152810399-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e898df23938ca22c12c7c37152810399-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ba9fddf637d9c0c511f2a9ba9cac1a7d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ba9fddf637d9c0c511f2a9ba9cac1a7d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ba9fddf637d9c0c511f2a9ba9cac1a7d", [d], options); $("#flot-ba9fddf637d9c0c511f2a9ba9cac1a7d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ba9fddf637d9c0c511f2a9ba9cac1a7d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ba9fddf637d9c0c511f2a9ba9cac1a7d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.32
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-18eb79c748c8535b914c65176dee0ed9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-18eb79c748c8535b914c65176dee0ed9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-18eb79c748c8535b914c65176dee0ed9", [d], options); $("#flot-18eb79c748c8535b914c65176dee0ed9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-18eb79c748c8535b914c65176dee0ed9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-18eb79c748c8535b914c65176dee0ed9-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ba20bc084caf50f93d64fe03689b8b86" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ba20bc084caf50f93d64fe03689b8b86-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ba20bc084caf50f93d64fe03689b8b86", [d], options); $("#flot-ba20bc084caf50f93d64fe03689b8b86").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ba20bc084caf50f93d64fe03689b8b86-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ba20bc084caf50f93d64fe03689b8b86-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.31
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4efb1f2a7bff87691c91e2fac3b9c09c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4efb1f2a7bff87691c91e2fac3b9c09c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4efb1f2a7bff87691c91e2fac3b9c09c", [d], options); $("#flot-4efb1f2a7bff87691c91e2fac3b9c09c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4efb1f2a7bff87691c91e2fac3b9c09c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4efb1f2a7bff87691c91e2fac3b9c09c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dfbd904da0745c7e5d050cd295eacc14" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dfbd904da0745c7e5d050cd295eacc14-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dfbd904da0745c7e5d050cd295eacc14", [d], options); $("#flot-dfbd904da0745c7e5d050cd295eacc14").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dfbd904da0745c7e5d050cd295eacc14-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dfbd904da0745c7e5d050cd295eacc14-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.30
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1e2d16a8e59875a51ea3d9b0d3343389" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1e2d16a8e59875a51ea3d9b0d3343389-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1e2d16a8e59875a51ea3d9b0d3343389", [d], options); $("#flot-1e2d16a8e59875a51ea3d9b0d3343389").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1e2d16a8e59875a51ea3d9b0d3343389-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1e2d16a8e59875a51ea3d9b0d3343389-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5e600973d0cca3e76798f32e108da09f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5e600973d0cca3e76798f32e108da09f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5e600973d0cca3e76798f32e108da09f", [d], options); $("#flot-5e600973d0cca3e76798f32e108da09f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5e600973d0cca3e76798f32e108da09f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5e600973d0cca3e76798f32e108da09f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.29
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2e722c6380b95917b4b7cdb4f841c4c3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2e722c6380b95917b4b7cdb4f841c4c3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2e722c6380b95917b4b7cdb4f841c4c3", [d], options); $("#flot-2e722c6380b95917b4b7cdb4f841c4c3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2e722c6380b95917b4b7cdb4f841c4c3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2e722c6380b95917b4b7cdb4f841c4c3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-aefd2f0763e01b093cf608ab56b33133" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-aefd2f0763e01b093cf608ab56b33133-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-aefd2f0763e01b093cf608ab56b33133", [d], options); $("#flot-aefd2f0763e01b093cf608ab56b33133").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-aefd2f0763e01b093cf608ab56b33133-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-aefd2f0763e01b093cf608ab56b33133-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.28
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dad0af33bc25a0d6892b8f1e63fbed57" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dad0af33bc25a0d6892b8f1e63fbed57-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dad0af33bc25a0d6892b8f1e63fbed57", [d], options); $("#flot-dad0af33bc25a0d6892b8f1e63fbed57").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dad0af33bc25a0d6892b8f1e63fbed57-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dad0af33bc25a0d6892b8f1e63fbed57-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-67b6825c3440da04de04199d48408832" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-67b6825c3440da04de04199d48408832-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-67b6825c3440da04de04199d48408832", [d], options); $("#flot-67b6825c3440da04de04199d48408832").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-67b6825c3440da04de04199d48408832-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-67b6825c3440da04de04199d48408832-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.27
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-310303c90777ea47ea594bc928a9aa32" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-310303c90777ea47ea594bc928a9aa32-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-310303c90777ea47ea594bc928a9aa32", [d], options); $("#flot-310303c90777ea47ea594bc928a9aa32").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-310303c90777ea47ea594bc928a9aa32-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-310303c90777ea47ea594bc928a9aa32-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3d16eafc3cceae6eaa5705fd8bc8e9d6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3d16eafc3cceae6eaa5705fd8bc8e9d6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3d16eafc3cceae6eaa5705fd8bc8e9d6", [d], options); $("#flot-3d16eafc3cceae6eaa5705fd8bc8e9d6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3d16eafc3cceae6eaa5705fd8bc8e9d6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3d16eafc3cceae6eaa5705fd8bc8e9d6-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.26
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3422130df7cece05bd26e66ce664d4c9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3422130df7cece05bd26e66ce664d4c9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3422130df7cece05bd26e66ce664d4c9", [d], options); $("#flot-3422130df7cece05bd26e66ce664d4c9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3422130df7cece05bd26e66ce664d4c9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3422130df7cece05bd26e66ce664d4c9-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5e78af82147c44f1026848442eb1a867" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5e78af82147c44f1026848442eb1a867-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5e78af82147c44f1026848442eb1a867", [d], options); $("#flot-5e78af82147c44f1026848442eb1a867").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5e78af82147c44f1026848442eb1a867-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5e78af82147c44f1026848442eb1a867-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.25
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0c0bd9245a8d0fb38b24ca9d832ab4d0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0c0bd9245a8d0fb38b24ca9d832ab4d0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0c0bd9245a8d0fb38b24ca9d832ab4d0", [d], options); $("#flot-0c0bd9245a8d0fb38b24ca9d832ab4d0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0c0bd9245a8d0fb38b24ca9d832ab4d0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0c0bd9245a8d0fb38b24ca9d832ab4d0-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5807bfbf88894f163d179b02b632e7b6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5807bfbf88894f163d179b02b632e7b6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5807bfbf88894f163d179b02b632e7b6", [d], options); $("#flot-5807bfbf88894f163d179b02b632e7b6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5807bfbf88894f163d179b02b632e7b6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5807bfbf88894f163d179b02b632e7b6-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.24
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-737f97eb88abb283ddf5dc79fbcc3f88" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-737f97eb88abb283ddf5dc79fbcc3f88-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-737f97eb88abb283ddf5dc79fbcc3f88", [d], options); $("#flot-737f97eb88abb283ddf5dc79fbcc3f88").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-737f97eb88abb283ddf5dc79fbcc3f88-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-737f97eb88abb283ddf5dc79fbcc3f88-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5f594195c25ff9e00edd1320b42e390d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5f594195c25ff9e00edd1320b42e390d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5f594195c25ff9e00edd1320b42e390d", [d], options); $("#flot-5f594195c25ff9e00edd1320b42e390d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5f594195c25ff9e00edd1320b42e390d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5f594195c25ff9e00edd1320b42e390d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.23
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ae44c6bd4dc0515b6dad760be0d5ee94" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ae44c6bd4dc0515b6dad760be0d5ee94-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ae44c6bd4dc0515b6dad760be0d5ee94", [d], options); $("#flot-ae44c6bd4dc0515b6dad760be0d5ee94").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ae44c6bd4dc0515b6dad760be0d5ee94-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ae44c6bd4dc0515b6dad760be0d5ee94-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b2021a5239a608d288a1492f6b9eee1a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b2021a5239a608d288a1492f6b9eee1a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b2021a5239a608d288a1492f6b9eee1a", [d], options); $("#flot-b2021a5239a608d288a1492f6b9eee1a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b2021a5239a608d288a1492f6b9eee1a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b2021a5239a608d288a1492f6b9eee1a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.22
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5d289798bfc0396c670acc26d37553ce" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5d289798bfc0396c670acc26d37553ce-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5d289798bfc0396c670acc26d37553ce", [d], options); $("#flot-5d289798bfc0396c670acc26d37553ce").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5d289798bfc0396c670acc26d37553ce-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5d289798bfc0396c670acc26d37553ce-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-94a5482505d4b00858485e630111ab2c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-94a5482505d4b00858485e630111ab2c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-94a5482505d4b00858485e630111ab2c", [d], options); $("#flot-94a5482505d4b00858485e630111ab2c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-94a5482505d4b00858485e630111ab2c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-94a5482505d4b00858485e630111ab2c-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.21
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e994a8b6100f18af4264295bdfa3013d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e994a8b6100f18af4264295bdfa3013d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e994a8b6100f18af4264295bdfa3013d", [d], options); $("#flot-e994a8b6100f18af4264295bdfa3013d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e994a8b6100f18af4264295bdfa3013d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e994a8b6100f18af4264295bdfa3013d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-855c1e2042b63b2cd87f9bbae6315242" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-855c1e2042b63b2cd87f9bbae6315242-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-855c1e2042b63b2cd87f9bbae6315242", [d], options); $("#flot-855c1e2042b63b2cd87f9bbae6315242").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-855c1e2042b63b2cd87f9bbae6315242-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-855c1e2042b63b2cd87f9bbae6315242-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.20
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b948cdc06935ea2a683fffe60c5ae266" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b948cdc06935ea2a683fffe60c5ae266-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b948cdc06935ea2a683fffe60c5ae266", [d], options); $("#flot-b948cdc06935ea2a683fffe60c5ae266").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b948cdc06935ea2a683fffe60c5ae266-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b948cdc06935ea2a683fffe60c5ae266-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-59ccfd6e21f3fb6444eed79a6cf636da" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-59ccfd6e21f3fb6444eed79a6cf636da-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-59ccfd6e21f3fb6444eed79a6cf636da", [d], options); $("#flot-59ccfd6e21f3fb6444eed79a6cf636da").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-59ccfd6e21f3fb6444eed79a6cf636da-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-59ccfd6e21f3fb6444eed79a6cf636da-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.19
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7275c60f6e159b5689d2ee037b01b8ec" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7275c60f6e159b5689d2ee037b01b8ec-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7275c60f6e159b5689d2ee037b01b8ec", [d], options); $("#flot-7275c60f6e159b5689d2ee037b01b8ec").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7275c60f6e159b5689d2ee037b01b8ec-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7275c60f6e159b5689d2ee037b01b8ec-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2435f2221c569279792e88a900568237" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2435f2221c569279792e88a900568237-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2435f2221c569279792e88a900568237", [d], options); $("#flot-2435f2221c569279792e88a900568237").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2435f2221c569279792e88a900568237-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2435f2221c569279792e88a900568237-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.18
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9a7e06a797eba9cb83f6652cc6fba9d4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9a7e06a797eba9cb83f6652cc6fba9d4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9a7e06a797eba9cb83f6652cc6fba9d4", [d], options); $("#flot-9a7e06a797eba9cb83f6652cc6fba9d4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9a7e06a797eba9cb83f6652cc6fba9d4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9a7e06a797eba9cb83f6652cc6fba9d4-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c3d2ad09f4be589e25c5d2181cd9e396" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c3d2ad09f4be589e25c5d2181cd9e396-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c3d2ad09f4be589e25c5d2181cd9e396", [d], options); $("#flot-c3d2ad09f4be589e25c5d2181cd9e396").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c3d2ad09f4be589e25c5d2181cd9e396-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c3d2ad09f4be589e25c5d2181cd9e396-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.17
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1944ccd22daf47f3d6417f8882015cbb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1944ccd22daf47f3d6417f8882015cbb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1944ccd22daf47f3d6417f8882015cbb", [d], options); $("#flot-1944ccd22daf47f3d6417f8882015cbb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1944ccd22daf47f3d6417f8882015cbb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1944ccd22daf47f3d6417f8882015cbb-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f72675666c005beb95b3c8c761c45beb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f72675666c005beb95b3c8c761c45beb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f72675666c005beb95b3c8c761c45beb", [d], options); $("#flot-f72675666c005beb95b3c8c761c45beb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f72675666c005beb95b3c8c761c45beb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f72675666c005beb95b3c8c761c45beb-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.16
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5573faad10f848c7f44f4e776667f742" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5573faad10f848c7f44f4e776667f742-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5573faad10f848c7f44f4e776667f742", [d], options); $("#flot-5573faad10f848c7f44f4e776667f742").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5573faad10f848c7f44f4e776667f742-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5573faad10f848c7f44f4e776667f742-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d673f19035e91830e616fc5fd644a1f9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d673f19035e91830e616fc5fd644a1f9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d673f19035e91830e616fc5fd644a1f9", [d], options); $("#flot-d673f19035e91830e616fc5fd644a1f9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d673f19035e91830e616fc5fd644a1f9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d673f19035e91830e616fc5fd644a1f9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.7, 5.6.15
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cdc60474a84852f28f42441686869c05" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cdc60474a84852f28f42441686869c05-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cdc60474a84852f28f42441686869c05", [d], options); $("#flot-cdc60474a84852f28f42441686869c05").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cdc60474a84852f28f42441686869c05-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cdc60474a84852f28f42441686869c05-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b89b2b9f28cd45bcf702bd9416943f8b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b89b2b9f28cd45bcf702bd9416943f8b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b89b2b9f28cd45bcf702bd9416943f8b", [d], options); $("#flot-b89b2b9f28cd45bcf702bd9416943f8b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b89b2b9f28cd45bcf702bd9416943f8b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b89b2b9f28cd45bcf702bd9416943f8b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.14
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-551410ccfde60995cd4d702456c9aebb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-551410ccfde60995cd4d702456c9aebb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-551410ccfde60995cd4d702456c9aebb", [d], options); $("#flot-551410ccfde60995cd4d702456c9aebb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-551410ccfde60995cd4d702456c9aebb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-551410ccfde60995cd4d702456c9aebb-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-be8c69d4d5e31961e0f5f9277893a697" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-be8c69d4d5e31961e0f5f9277893a697-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-be8c69d4d5e31961e0f5f9277893a697", [d], options); $("#flot-be8c69d4d5e31961e0f5f9277893a697").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-be8c69d4d5e31961e0f5f9277893a697-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-be8c69d4d5e31961e0f5f9277893a697-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.13
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6f3de298fd6b6b6beea41fdb70ff95f3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6f3de298fd6b6b6beea41fdb70ff95f3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6f3de298fd6b6b6beea41fdb70ff95f3", [d], options); $("#flot-6f3de298fd6b6b6beea41fdb70ff95f3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6f3de298fd6b6b6beea41fdb70ff95f3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6f3de298fd6b6b6beea41fdb70ff95f3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8c862689382c6eed664c48d4afc5826c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8c862689382c6eed664c48d4afc5826c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8c862689382c6eed664c48d4afc5826c", [d], options); $("#flot-8c862689382c6eed664c48d4afc5826c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8c862689382c6eed664c48d4afc5826c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8c862689382c6eed664c48d4afc5826c-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.12
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-22c4588b0bed6b3a58b81fbcb0ae944a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-22c4588b0bed6b3a58b81fbcb0ae944a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-22c4588b0bed6b3a58b81fbcb0ae944a", [d], options); $("#flot-22c4588b0bed6b3a58b81fbcb0ae944a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-22c4588b0bed6b3a58b81fbcb0ae944a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-22c4588b0bed6b3a58b81fbcb0ae944a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ca3def798af4b7df8f9739667e79fd75" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ca3def798af4b7df8f9739667e79fd75-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ca3def798af4b7df8f9739667e79fd75", [d], options); $("#flot-ca3def798af4b7df8f9739667e79fd75").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ca3def798af4b7df8f9739667e79fd75-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ca3def798af4b7df8f9739667e79fd75-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.11
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a51e4ca8ec39a792e0a309943ddabe15" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a51e4ca8ec39a792e0a309943ddabe15-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a51e4ca8ec39a792e0a309943ddabe15", [d], options); $("#flot-a51e4ca8ec39a792e0a309943ddabe15").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a51e4ca8ec39a792e0a309943ddabe15-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a51e4ca8ec39a792e0a309943ddabe15-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9af061fe4ce2b465256fa6f3d9f2c2fd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9af061fe4ce2b465256fa6f3d9f2c2fd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9af061fe4ce2b465256fa6f3d9f2c2fd", [d], options); $("#flot-9af061fe4ce2b465256fa6f3d9f2c2fd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9af061fe4ce2b465256fa6f3d9f2c2fd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9af061fe4ce2b465256fa6f3d9f2c2fd-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.10
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8928aa374520eb07528be3ef3ecc4bff" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8928aa374520eb07528be3ef3ecc4bff-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8928aa374520eb07528be3ef3ecc4bff", [d], options); $("#flot-8928aa374520eb07528be3ef3ecc4bff").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8928aa374520eb07528be3ef3ecc4bff-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8928aa374520eb07528be3ef3ecc4bff-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b852f3d4581c90100cb6fd848d5130e2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b852f3d4581c90100cb6fd848d5130e2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b852f3d4581c90100cb6fd848d5130e2", [d], options); $("#flot-b852f3d4581c90100cb6fd848d5130e2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b852f3d4581c90100cb6fd848d5130e2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b852f3d4581c90100cb6fd848d5130e2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.9
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1f6a08609417651f5f5f4c5f3f81ce3a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1f6a08609417651f5f5f4c5f3f81ce3a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1f6a08609417651f5f5f4c5f3f81ce3a", [d], options); $("#flot-1f6a08609417651f5f5f4c5f3f81ce3a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1f6a08609417651f5f5f4c5f3f81ce3a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1f6a08609417651f5f5f4c5f3f81ce3a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a149b8325f1ac4a69e1e9af414d2eb3d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a149b8325f1ac4a69e1e9af414d2eb3d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a149b8325f1ac4a69e1e9af414d2eb3d", [d], options); $("#flot-a149b8325f1ac4a69e1e9af414d2eb3d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a149b8325f1ac4a69e1e9af414d2eb3d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a149b8325f1ac4a69e1e9af414d2eb3d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.8
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1e7c29dc79a603fd1c29796c8f6cde70" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1e7c29dc79a603fd1c29796c8f6cde70-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1e7c29dc79a603fd1c29796c8f6cde70", [d], options); $("#flot-1e7c29dc79a603fd1c29796c8f6cde70").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1e7c29dc79a603fd1c29796c8f6cde70-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1e7c29dc79a603fd1c29796c8f6cde70-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-15310991b4d8459a68c8126159c237aa" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-15310991b4d8459a68c8126159c237aa-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-15310991b4d8459a68c8126159c237aa", [d], options); $("#flot-15310991b4d8459a68c8126159c237aa").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-15310991b4d8459a68c8126159c237aa-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-15310991b4d8459a68c8126159c237aa-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.6
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e3c3549392dcff207d8bbbb576baf5b2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e3c3549392dcff207d8bbbb576baf5b2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e3c3549392dcff207d8bbbb576baf5b2", [d], options); $("#flot-e3c3549392dcff207d8bbbb576baf5b2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e3c3549392dcff207d8bbbb576baf5b2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e3c3549392dcff207d8bbbb576baf5b2-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-fd6c3c81e505ff2e92af05a8020aafca" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-fd6c3c81e505ff2e92af05a8020aafca-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-fd6c3c81e505ff2e92af05a8020aafca", [d], options); $("#flot-fd6c3c81e505ff2e92af05a8020aafca").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-fd6c3c81e505ff2e92af05a8020aafca-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-fd6c3c81e505ff2e92af05a8020aafca-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.5
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2248ba5b7d4c9a99987b885921e4fcf4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2248ba5b7d4c9a99987b885921e4fcf4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2248ba5b7d4c9a99987b885921e4fcf4", [d], options); $("#flot-2248ba5b7d4c9a99987b885921e4fcf4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2248ba5b7d4c9a99987b885921e4fcf4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2248ba5b7d4c9a99987b885921e4fcf4-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-82aa4e29b32e60760fb995d7b4317506" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-82aa4e29b32e60760fb995d7b4317506-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-82aa4e29b32e60760fb995d7b4317506", [d], options); $("#flot-82aa4e29b32e60760fb995d7b4317506").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-82aa4e29b32e60760fb995d7b4317506-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-82aa4e29b32e60760fb995d7b4317506-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.4
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1d183768ab68fb48b0b48272ae657d96" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1d183768ab68fb48b0b48272ae657d96-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1d183768ab68fb48b0b48272ae657d96", [d], options); $("#flot-1d183768ab68fb48b0b48272ae657d96").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1d183768ab68fb48b0b48272ae657d96-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1d183768ab68fb48b0b48272ae657d96-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-630e44d0f785d27e672760ec72bd446e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-630e44d0f785d27e672760ec72bd446e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-630e44d0f785d27e672760ec72bd446e", [d], options); $("#flot-630e44d0f785d27e672760ec72bd446e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-630e44d0f785d27e672760ec72bd446e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-630e44d0f785d27e672760ec72bd446e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.3
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-abd2aa89b8b83e0b756328a68e8176b2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-abd2aa89b8b83e0b756328a68e8176b2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-abd2aa89b8b83e0b756328a68e8176b2", [d], options); $("#flot-abd2aa89b8b83e0b756328a68e8176b2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-abd2aa89b8b83e0b756328a68e8176b2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-abd2aa89b8b83e0b756328a68e8176b2-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c3a9c74b6f66299ad4a8fb887c4966b6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c3a9c74b6f66299ad4a8fb887c4966b6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c3a9c74b6f66299ad4a8fb887c4966b6", [d], options); $("#flot-c3a9c74b6f66299ad4a8fb887c4966b6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c3a9c74b6f66299ad4a8fb887c4966b6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c3a9c74b6f66299ad4a8fb887c4966b6-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.2
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7e369b30d22a91202074f17ccf69639d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7e369b30d22a91202074f17ccf69639d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7e369b30d22a91202074f17ccf69639d", [d], options); $("#flot-7e369b30d22a91202074f17ccf69639d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7e369b30d22a91202074f17ccf69639d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7e369b30d22a91202074f17ccf69639d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6ba6b04360ec430c2b3c7e0d118ef6b0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6ba6b04360ec430c2b3c7e0d118ef6b0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6ba6b04360ec430c2b3c7e0d118ef6b0", [d], options); $("#flot-6ba6b04360ec430c2b3c7e0d118ef6b0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6ba6b04360ec430c2b3c7e0d118ef6b0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6ba6b04360ec430c2b3c7e0d118ef6b0-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.1
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-eee7c48c0fca197d13d16716ddd5184e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-eee7c48c0fca197d13d16716ddd5184e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-eee7c48c0fca197d13d16716ddd5184e", [d], options); $("#flot-eee7c48c0fca197d13d16716ddd5184e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-eee7c48c0fca197d13d16716ddd5184e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-eee7c48c0fca197d13d16716ddd5184e-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d1d1283337d2eeb979c26e74fa008239" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d1d1283337d2eeb979c26e74fa008239-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d1d1283337d2eeb979c26e74fa008239", [d], options); $("#flot-d1d1283337d2eeb979c26e74fa008239").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d1d1283337d2eeb979c26e74fa008239-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d1d1283337d2eeb979c26e74fa008239-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.6.0
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1967b43407a94d1e2914d6095aa6a45c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1967b43407a94d1e2914d6095aa6a45c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1967b43407a94d1e2914d6095aa6a45c", [d], options); $("#flot-1967b43407a94d1e2914d6095aa6a45c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1967b43407a94d1e2914d6095aa6a45c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1967b43407a94d1e2914d6095aa6a45c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c7ee494f3da8f9c7a54cd276e847b4b8" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c7ee494f3da8f9c7a54cd276e847b4b8-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c7ee494f3da8f9c7a54cd276e847b4b8", [d], options); $("#flot-c7ee494f3da8f9c7a54cd276e847b4b8").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c7ee494f3da8f9c7a54cd276e847b4b8-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c7ee494f3da8f9c7a54cd276e847b4b8-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.38
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e7d10d56983fcd8b33c735dcc48f77d4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e7d10d56983fcd8b33c735dcc48f77d4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e7d10d56983fcd8b33c735dcc48f77d4", [d], options); $("#flot-e7d10d56983fcd8b33c735dcc48f77d4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e7d10d56983fcd8b33c735dcc48f77d4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e7d10d56983fcd8b33c735dcc48f77d4-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e83cf0300a2680ceca87f13e064337ae" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e83cf0300a2680ceca87f13e064337ae-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e83cf0300a2680ceca87f13e064337ae", [d], options); $("#flot-e83cf0300a2680ceca87f13e064337ae").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e83cf0300a2680ceca87f13e064337ae-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e83cf0300a2680ceca87f13e064337ae-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.37
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-994a2191e90eb6a0a9c5f27193a989e3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-994a2191e90eb6a0a9c5f27193a989e3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-994a2191e90eb6a0a9c5f27193a989e3", [d], options); $("#flot-994a2191e90eb6a0a9c5f27193a989e3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-994a2191e90eb6a0a9c5f27193a989e3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-994a2191e90eb6a0a9c5f27193a989e3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8ee07aa2ec8e744da52c77c503ffa2e7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8ee07aa2ec8e744da52c77c503ffa2e7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8ee07aa2ec8e744da52c77c503ffa2e7", [d], options); $("#flot-8ee07aa2ec8e744da52c77c503ffa2e7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8ee07aa2ec8e744da52c77c503ffa2e7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8ee07aa2ec8e744da52c77c503ffa2e7-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.36
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0a16dd96fadd71285fa7f5e52b0a7800" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0a16dd96fadd71285fa7f5e52b0a7800-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0a16dd96fadd71285fa7f5e52b0a7800", [d], options); $("#flot-0a16dd96fadd71285fa7f5e52b0a7800").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0a16dd96fadd71285fa7f5e52b0a7800-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0a16dd96fadd71285fa7f5e52b0a7800-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-04cfcf2becb89728c0708e9f8879eede" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-04cfcf2becb89728c0708e9f8879eede-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-04cfcf2becb89728c0708e9f8879eede", [d], options); $("#flot-04cfcf2becb89728c0708e9f8879eede").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-04cfcf2becb89728c0708e9f8879eede-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-04cfcf2becb89728c0708e9f8879eede-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.35
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1ea28bceacdb96fcabb0c439a61cdbfd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1ea28bceacdb96fcabb0c439a61cdbfd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1ea28bceacdb96fcabb0c439a61cdbfd", [d], options); $("#flot-1ea28bceacdb96fcabb0c439a61cdbfd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1ea28bceacdb96fcabb0c439a61cdbfd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1ea28bceacdb96fcabb0c439a61cdbfd-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-70946720663e6ab2d537fcf55288e04d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-70946720663e6ab2d537fcf55288e04d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-70946720663e6ab2d537fcf55288e04d", [d], options); $("#flot-70946720663e6ab2d537fcf55288e04d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-70946720663e6ab2d537fcf55288e04d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-70946720663e6ab2d537fcf55288e04d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.34
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e719089967df06a7761e03590faa9348" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e719089967df06a7761e03590faa9348-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e719089967df06a7761e03590faa9348", [d], options); $("#flot-e719089967df06a7761e03590faa9348").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e719089967df06a7761e03590faa9348-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e719089967df06a7761e03590faa9348-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f36cc54b4e61daaec618401cd750f838" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f36cc54b4e61daaec618401cd750f838-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f36cc54b4e61daaec618401cd750f838", [d], options); $("#flot-f36cc54b4e61daaec618401cd750f838").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f36cc54b4e61daaec618401cd750f838-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f36cc54b4e61daaec618401cd750f838-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.33
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8848ea7a4335f48a75f4e2cdbae0e2ac" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8848ea7a4335f48a75f4e2cdbae0e2ac-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8848ea7a4335f48a75f4e2cdbae0e2ac", [d], options); $("#flot-8848ea7a4335f48a75f4e2cdbae0e2ac").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8848ea7a4335f48a75f4e2cdbae0e2ac-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8848ea7a4335f48a75f4e2cdbae0e2ac-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c5848fc373047dab25b30c038c4622cb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c5848fc373047dab25b30c038c4622cb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c5848fc373047dab25b30c038c4622cb", [d], options); $("#flot-c5848fc373047dab25b30c038c4622cb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c5848fc373047dab25b30c038c4622cb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c5848fc373047dab25b30c038c4622cb-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.32
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-52a9bea6a047373dafd64ee6763fa6a5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-52a9bea6a047373dafd64ee6763fa6a5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-52a9bea6a047373dafd64ee6763fa6a5", [d], options); $("#flot-52a9bea6a047373dafd64ee6763fa6a5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-52a9bea6a047373dafd64ee6763fa6a5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-52a9bea6a047373dafd64ee6763fa6a5-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3cf81be38454e06e2706a0008fd9f8b9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3cf81be38454e06e2706a0008fd9f8b9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3cf81be38454e06e2706a0008fd9f8b9", [d], options); $("#flot-3cf81be38454e06e2706a0008fd9f8b9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3cf81be38454e06e2706a0008fd9f8b9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3cf81be38454e06e2706a0008fd9f8b9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.31
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-931c7a6b02f43967061c46841e84a02f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-931c7a6b02f43967061c46841e84a02f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-931c7a6b02f43967061c46841e84a02f", [d], options); $("#flot-931c7a6b02f43967061c46841e84a02f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-931c7a6b02f43967061c46841e84a02f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-931c7a6b02f43967061c46841e84a02f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9a3d01f68e7f19b2ab7fbda0eb79d7f9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9a3d01f68e7f19b2ab7fbda0eb79d7f9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9a3d01f68e7f19b2ab7fbda0eb79d7f9", [d], options); $("#flot-9a3d01f68e7f19b2ab7fbda0eb79d7f9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9a3d01f68e7f19b2ab7fbda0eb79d7f9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9a3d01f68e7f19b2ab7fbda0eb79d7f9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.30
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ba209d69a39c55c0e492e853a4cb65ce" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ba209d69a39c55c0e492e853a4cb65ce-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ba209d69a39c55c0e492e853a4cb65ce", [d], options); $("#flot-ba209d69a39c55c0e492e853a4cb65ce").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ba209d69a39c55c0e492e853a4cb65ce-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ba209d69a39c55c0e492e853a4cb65ce-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7d1fdb6c9e92dfc5160ca7efb5946677" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7d1fdb6c9e92dfc5160ca7efb5946677-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7d1fdb6c9e92dfc5160ca7efb5946677", [d], options); $("#flot-7d1fdb6c9e92dfc5160ca7efb5946677").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7d1fdb6c9e92dfc5160ca7efb5946677-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7d1fdb6c9e92dfc5160ca7efb5946677-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.29
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-79f8ac3b8732419b0924fc9935e08a17" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-79f8ac3b8732419b0924fc9935e08a17-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-79f8ac3b8732419b0924fc9935e08a17", [d], options); $("#flot-79f8ac3b8732419b0924fc9935e08a17").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-79f8ac3b8732419b0924fc9935e08a17-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-79f8ac3b8732419b0924fc9935e08a17-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b47c7d0acbe8545974394dca77dc9aa9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b47c7d0acbe8545974394dca77dc9aa9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b47c7d0acbe8545974394dca77dc9aa9", [d], options); $("#flot-b47c7d0acbe8545974394dca77dc9aa9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b47c7d0acbe8545974394dca77dc9aa9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b47c7d0acbe8545974394dca77dc9aa9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.28
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e7c3531f39ee302e32453c15b61b25cf" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e7c3531f39ee302e32453c15b61b25cf-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e7c3531f39ee302e32453c15b61b25cf", [d], options); $("#flot-e7c3531f39ee302e32453c15b61b25cf").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e7c3531f39ee302e32453c15b61b25cf-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e7c3531f39ee302e32453c15b61b25cf-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7f9415148a3dcc36aa0ffe2e2509cb60" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7f9415148a3dcc36aa0ffe2e2509cb60-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7f9415148a3dcc36aa0ffe2e2509cb60", [d], options); $("#flot-7f9415148a3dcc36aa0ffe2e2509cb60").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7f9415148a3dcc36aa0ffe2e2509cb60-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7f9415148a3dcc36aa0ffe2e2509cb60-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.27
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dcd4fbfda2901dbbf5cd174b82051da7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dcd4fbfda2901dbbf5cd174b82051da7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dcd4fbfda2901dbbf5cd174b82051da7", [d], options); $("#flot-dcd4fbfda2901dbbf5cd174b82051da7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dcd4fbfda2901dbbf5cd174b82051da7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dcd4fbfda2901dbbf5cd174b82051da7-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e19a1f8b4b2e909f47c55720e7ef58d2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e19a1f8b4b2e909f47c55720e7ef58d2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e19a1f8b4b2e909f47c55720e7ef58d2", [d], options); $("#flot-e19a1f8b4b2e909f47c55720e7ef58d2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e19a1f8b4b2e909f47c55720e7ef58d2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e19a1f8b4b2e909f47c55720e7ef58d2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.26
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9cd6077bdb0c85bab2fcf0c560fa6034" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9cd6077bdb0c85bab2fcf0c560fa6034-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9cd6077bdb0c85bab2fcf0c560fa6034", [d], options); $("#flot-9cd6077bdb0c85bab2fcf0c560fa6034").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9cd6077bdb0c85bab2fcf0c560fa6034-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9cd6077bdb0c85bab2fcf0c560fa6034-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6d7e30cd824b369a55b2923ff98c56ce" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6d7e30cd824b369a55b2923ff98c56ce-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6d7e30cd824b369a55b2923ff98c56ce", [d], options); $("#flot-6d7e30cd824b369a55b2923ff98c56ce").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6d7e30cd824b369a55b2923ff98c56ce-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6d7e30cd824b369a55b2923ff98c56ce-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.25
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-48a90e918eaca5428d4b0286a971998e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-48a90e918eaca5428d4b0286a971998e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-48a90e918eaca5428d4b0286a971998e", [d], options); $("#flot-48a90e918eaca5428d4b0286a971998e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-48a90e918eaca5428d4b0286a971998e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-48a90e918eaca5428d4b0286a971998e-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b59fca7f1c96442d3d99995dd320397c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b59fca7f1c96442d3d99995dd320397c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b59fca7f1c96442d3d99995dd320397c", [d], options); $("#flot-b59fca7f1c96442d3d99995dd320397c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b59fca7f1c96442d3d99995dd320397c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b59fca7f1c96442d3d99995dd320397c-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.24
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-290e463bc4b43c351e96bff64ed274f4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-290e463bc4b43c351e96bff64ed274f4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-290e463bc4b43c351e96bff64ed274f4", [d], options); $("#flot-290e463bc4b43c351e96bff64ed274f4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-290e463bc4b43c351e96bff64ed274f4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-290e463bc4b43c351e96bff64ed274f4-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f18a763594ba9176d4d28e8341f6c804" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f18a763594ba9176d4d28e8341f6c804-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f18a763594ba9176d4d28e8341f6c804", [d], options); $("#flot-f18a763594ba9176d4d28e8341f6c804").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f18a763594ba9176d4d28e8341f6c804-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f18a763594ba9176d4d28e8341f6c804-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.23
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3ec0d55e00b1621b6d69b7f76b6caf35" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3ec0d55e00b1621b6d69b7f76b6caf35-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3ec0d55e00b1621b6d69b7f76b6caf35", [d], options); $("#flot-3ec0d55e00b1621b6d69b7f76b6caf35").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3ec0d55e00b1621b6d69b7f76b6caf35-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3ec0d55e00b1621b6d69b7f76b6caf35-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cded147ccc8b8a22cda427202b745ce4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cded147ccc8b8a22cda427202b745ce4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cded147ccc8b8a22cda427202b745ce4", [d], options); $("#flot-cded147ccc8b8a22cda427202b745ce4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cded147ccc8b8a22cda427202b745ce4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cded147ccc8b8a22cda427202b745ce4-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.22
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cda968fa7901d1162a4e7eb276738366" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cda968fa7901d1162a4e7eb276738366-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cda968fa7901d1162a4e7eb276738366", [d], options); $("#flot-cda968fa7901d1162a4e7eb276738366").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cda968fa7901d1162a4e7eb276738366-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cda968fa7901d1162a4e7eb276738366-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-699fcafd1e55d778605cd654fdc00147" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-699fcafd1e55d778605cd654fdc00147-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-699fcafd1e55d778605cd654fdc00147", [d], options); $("#flot-699fcafd1e55d778605cd654fdc00147").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-699fcafd1e55d778605cd654fdc00147-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-699fcafd1e55d778605cd654fdc00147-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.21
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3059785435cc4ad203c2a9c0d841a8c9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3059785435cc4ad203c2a9c0d841a8c9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3059785435cc4ad203c2a9c0d841a8c9", [d], options); $("#flot-3059785435cc4ad203c2a9c0d841a8c9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3059785435cc4ad203c2a9c0d841a8c9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3059785435cc4ad203c2a9c0d841a8c9-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-df60b2efd286e515afc919b0f7e2839b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-df60b2efd286e515afc919b0f7e2839b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-df60b2efd286e515afc919b0f7e2839b", [d], options); $("#flot-df60b2efd286e515afc919b0f7e2839b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-df60b2efd286e515afc919b0f7e2839b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-df60b2efd286e515afc919b0f7e2839b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.20
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8260d4d7cbf89d0dbee3010c26b18c17" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8260d4d7cbf89d0dbee3010c26b18c17-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8260d4d7cbf89d0dbee3010c26b18c17", [d], options); $("#flot-8260d4d7cbf89d0dbee3010c26b18c17").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8260d4d7cbf89d0dbee3010c26b18c17-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8260d4d7cbf89d0dbee3010c26b18c17-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f63c8872fc16378dea267fd193bd0824" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f63c8872fc16378dea267fd193bd0824-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f63c8872fc16378dea267fd193bd0824", [d], options); $("#flot-f63c8872fc16378dea267fd193bd0824").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f63c8872fc16378dea267fd193bd0824-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f63c8872fc16378dea267fd193bd0824-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.19
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c3524ce1246b3f2d7024674497fceb1a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c3524ce1246b3f2d7024674497fceb1a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c3524ce1246b3f2d7024674497fceb1a", [d], options); $("#flot-c3524ce1246b3f2d7024674497fceb1a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c3524ce1246b3f2d7024674497fceb1a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c3524ce1246b3f2d7024674497fceb1a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3746042e30ad586e9ec61070589a5e4a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3746042e30ad586e9ec61070589a5e4a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3746042e30ad586e9ec61070589a5e4a", [d], options); $("#flot-3746042e30ad586e9ec61070589a5e4a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3746042e30ad586e9ec61070589a5e4a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3746042e30ad586e9ec61070589a5e4a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.18
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8fcb70f8d99c6015c906a46a34f73bf5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8fcb70f8d99c6015c906a46a34f73bf5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8fcb70f8d99c6015c906a46a34f73bf5", [d], options); $("#flot-8fcb70f8d99c6015c906a46a34f73bf5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8fcb70f8d99c6015c906a46a34f73bf5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8fcb70f8d99c6015c906a46a34f73bf5-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b0c9f52b7f31c2710a280fec10b8ad46" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b0c9f52b7f31c2710a280fec10b8ad46-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b0c9f52b7f31c2710a280fec10b8ad46", [d], options); $("#flot-b0c9f52b7f31c2710a280fec10b8ad46").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b0c9f52b7f31c2710a280fec10b8ad46-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b0c9f52b7f31c2710a280fec10b8ad46-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.17
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a1a247ae59017d8e1e7f7be5ac127c58" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a1a247ae59017d8e1e7f7be5ac127c58-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a1a247ae59017d8e1e7f7be5ac127c58", [d], options); $("#flot-a1a247ae59017d8e1e7f7be5ac127c58").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a1a247ae59017d8e1e7f7be5ac127c58-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a1a247ae59017d8e1e7f7be5ac127c58-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-86d738c27226db92f5def13c6fce8d3a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-86d738c27226db92f5def13c6fce8d3a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-86d738c27226db92f5def13c6fce8d3a", [d], options); $("#flot-86d738c27226db92f5def13c6fce8d3a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-86d738c27226db92f5def13c6fce8d3a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-86d738c27226db92f5def13c6fce8d3a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.16
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a92c7098dfbcd70e96bfc063269b95f7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a92c7098dfbcd70e96bfc063269b95f7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a92c7098dfbcd70e96bfc063269b95f7", [d], options); $("#flot-a92c7098dfbcd70e96bfc063269b95f7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a92c7098dfbcd70e96bfc063269b95f7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a92c7098dfbcd70e96bfc063269b95f7-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2baf1fde367e533139cb36e544f73246" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2baf1fde367e533139cb36e544f73246-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2baf1fde367e533139cb36e544f73246", [d], options); $("#flot-2baf1fde367e533139cb36e544f73246").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2baf1fde367e533139cb36e544f73246-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2baf1fde367e533139cb36e544f73246-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.15
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2bf3e1ff74d6b560ac0728ab52c18900" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2bf3e1ff74d6b560ac0728ab52c18900-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2bf3e1ff74d6b560ac0728ab52c18900", [d], options); $("#flot-2bf3e1ff74d6b560ac0728ab52c18900").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2bf3e1ff74d6b560ac0728ab52c18900-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2bf3e1ff74d6b560ac0728ab52c18900-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cc72103dd1c12620387461c13f42e291" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cc72103dd1c12620387461c13f42e291-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cc72103dd1c12620387461c13f42e291", [d], options); $("#flot-cc72103dd1c12620387461c13f42e291").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cc72103dd1c12620387461c13f42e291-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cc72103dd1c12620387461c13f42e291-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.14
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bdcce39728e882e03980c3f13510e0c1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bdcce39728e882e03980c3f13510e0c1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bdcce39728e882e03980c3f13510e0c1", [d], options); $("#flot-bdcce39728e882e03980c3f13510e0c1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bdcce39728e882e03980c3f13510e0c1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bdcce39728e882e03980c3f13510e0c1-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1441912947850afffd7987b7bab66a52" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1441912947850afffd7987b7bab66a52-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1441912947850afffd7987b7bab66a52", [d], options); $("#flot-1441912947850afffd7987b7bab66a52").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1441912947850afffd7987b7bab66a52-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1441912947850afffd7987b7bab66a52-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.13
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6b007469fc77badb7aa270e527004708" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6b007469fc77badb7aa270e527004708-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6b007469fc77badb7aa270e527004708", [d], options); $("#flot-6b007469fc77badb7aa270e527004708").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6b007469fc77badb7aa270e527004708-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6b007469fc77badb7aa270e527004708-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dfb68f9623f5915c578080cc0708f845" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dfb68f9623f5915c578080cc0708f845-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dfb68f9623f5915c578080cc0708f845", [d], options); $("#flot-dfb68f9623f5915c578080cc0708f845").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dfb68f9623f5915c578080cc0708f845-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dfb68f9623f5915c578080cc0708f845-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.12
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bfacfe5ae75f284cacbf4a84aebb6b12" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bfacfe5ae75f284cacbf4a84aebb6b12-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bfacfe5ae75f284cacbf4a84aebb6b12", [d], options); $("#flot-bfacfe5ae75f284cacbf4a84aebb6b12").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bfacfe5ae75f284cacbf4a84aebb6b12-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bfacfe5ae75f284cacbf4a84aebb6b12-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-73218b4d3f54c30243c6e7afa627f57e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-73218b4d3f54c30243c6e7afa627f57e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-73218b4d3f54c30243c6e7afa627f57e", [d], options); $("#flot-73218b4d3f54c30243c6e7afa627f57e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-73218b4d3f54c30243c6e7afa627f57e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-73218b4d3f54c30243c6e7afa627f57e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.11
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b6427bc6f3bd77cd4d1f53f76a48a0eb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b6427bc6f3bd77cd4d1f53f76a48a0eb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b6427bc6f3bd77cd4d1f53f76a48a0eb", [d], options); $("#flot-b6427bc6f3bd77cd4d1f53f76a48a0eb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b6427bc6f3bd77cd4d1f53f76a48a0eb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b6427bc6f3bd77cd4d1f53f76a48a0eb-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3a0706e728c2e1e995e5381a561d32b3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3a0706e728c2e1e995e5381a561d32b3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3a0706e728c2e1e995e5381a561d32b3", [d], options); $("#flot-3a0706e728c2e1e995e5381a561d32b3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3a0706e728c2e1e995e5381a561d32b3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3a0706e728c2e1e995e5381a561d32b3-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.10
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ec6b7d67fb97687430e9cf22b2a5219b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ec6b7d67fb97687430e9cf22b2a5219b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ec6b7d67fb97687430e9cf22b2a5219b", [d], options); $("#flot-ec6b7d67fb97687430e9cf22b2a5219b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ec6b7d67fb97687430e9cf22b2a5219b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ec6b7d67fb97687430e9cf22b2a5219b-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-034a0c5f1c0c56f89db249a8be7f2975" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-034a0c5f1c0c56f89db249a8be7f2975-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-034a0c5f1c0c56f89db249a8be7f2975", [d], options); $("#flot-034a0c5f1c0c56f89db249a8be7f2975").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-034a0c5f1c0c56f89db249a8be7f2975-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-034a0c5f1c0c56f89db249a8be7f2975-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.9
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3ccd763144847e61f1815bd75addcc95" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3ccd763144847e61f1815bd75addcc95-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3ccd763144847e61f1815bd75addcc95", [d], options); $("#flot-3ccd763144847e61f1815bd75addcc95").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3ccd763144847e61f1815bd75addcc95-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3ccd763144847e61f1815bd75addcc95-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1d6bd1b2c4238f1b3d5750125dfeaf7a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1d6bd1b2c4238f1b3d5750125dfeaf7a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1d6bd1b2c4238f1b3d5750125dfeaf7a", [d], options); $("#flot-1d6bd1b2c4238f1b3d5750125dfeaf7a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1d6bd1b2c4238f1b3d5750125dfeaf7a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1d6bd1b2c4238f1b3d5750125dfeaf7a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.8
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b14c3896f2831b060517d16e7457afd1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b14c3896f2831b060517d16e7457afd1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b14c3896f2831b060517d16e7457afd1", [d], options); $("#flot-b14c3896f2831b060517d16e7457afd1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b14c3896f2831b060517d16e7457afd1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b14c3896f2831b060517d16e7457afd1-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c75f86d5a6dd2c7757ae95c053a44967" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c75f86d5a6dd2c7757ae95c053a44967-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c75f86d5a6dd2c7757ae95c053a44967", [d], options); $("#flot-c75f86d5a6dd2c7757ae95c053a44967").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c75f86d5a6dd2c7757ae95c053a44967-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c75f86d5a6dd2c7757ae95c053a44967-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.7
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d0795baa6b796f8caa7bd0a288fae2f6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d0795baa6b796f8caa7bd0a288fae2f6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d0795baa6b796f8caa7bd0a288fae2f6", [d], options); $("#flot-d0795baa6b796f8caa7bd0a288fae2f6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d0795baa6b796f8caa7bd0a288fae2f6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d0795baa6b796f8caa7bd0a288fae2f6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b97469ef123e81d6e44681bf35a1e030" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b97469ef123e81d6e44681bf35a1e030-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b97469ef123e81d6e44681bf35a1e030", [d], options); $("#flot-b97469ef123e81d6e44681bf35a1e030").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b97469ef123e81d6e44681bf35a1e030-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b97469ef123e81d6e44681bf35a1e030-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.6
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5346de8b1dd9e387d6be393061e8dfc3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5346de8b1dd9e387d6be393061e8dfc3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5346de8b1dd9e387d6be393061e8dfc3", [d], options); $("#flot-5346de8b1dd9e387d6be393061e8dfc3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5346de8b1dd9e387d6be393061e8dfc3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5346de8b1dd9e387d6be393061e8dfc3-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-215def66ab597766296cd9d8c324ccd3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-215def66ab597766296cd9d8c324ccd3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-215def66ab597766296cd9d8c324ccd3", [d], options); $("#flot-215def66ab597766296cd9d8c324ccd3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-215def66ab597766296cd9d8c324ccd3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-215def66ab597766296cd9d8c324ccd3-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.5
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b6c62c486234d4e23801cbf681bd1f4e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b6c62c486234d4e23801cbf681bd1f4e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b6c62c486234d4e23801cbf681bd1f4e", [d], options); $("#flot-b6c62c486234d4e23801cbf681bd1f4e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b6c62c486234d4e23801cbf681bd1f4e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b6c62c486234d4e23801cbf681bd1f4e-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-51295d9cccfe7cdfb6068e57932fa80f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-51295d9cccfe7cdfb6068e57932fa80f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-51295d9cccfe7cdfb6068e57932fa80f", [d], options); $("#flot-51295d9cccfe7cdfb6068e57932fa80f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-51295d9cccfe7cdfb6068e57932fa80f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-51295d9cccfe7cdfb6068e57932fa80f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.4
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bf35450783c0f62386926d3a0da12fc6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bf35450783c0f62386926d3a0da12fc6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bf35450783c0f62386926d3a0da12fc6", [d], options); $("#flot-bf35450783c0f62386926d3a0da12fc6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bf35450783c0f62386926d3a0da12fc6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bf35450783c0f62386926d3a0da12fc6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-36bcad70c44197b3d375ea61cadc920d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-36bcad70c44197b3d375ea61cadc920d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-36bcad70c44197b3d375ea61cadc920d", [d], options); $("#flot-36bcad70c44197b3d375ea61cadc920d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-36bcad70c44197b3d375ea61cadc920d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-36bcad70c44197b3d375ea61cadc920d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.3
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a1a7d61eb36816c236fad6377dfdaeb6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a1a7d61eb36816c236fad6377dfdaeb6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a1a7d61eb36816c236fad6377dfdaeb6", [d], options); $("#flot-a1a7d61eb36816c236fad6377dfdaeb6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a1a7d61eb36816c236fad6377dfdaeb6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a1a7d61eb36816c236fad6377dfdaeb6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2a9efec7fee0f4c337306f2bc82e64cc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2a9efec7fee0f4c337306f2bc82e64cc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2a9efec7fee0f4c337306f2bc82e64cc", [d], options); $("#flot-2a9efec7fee0f4c337306f2bc82e64cc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2a9efec7fee0f4c337306f2bc82e64cc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2a9efec7fee0f4c337306f2bc82e64cc-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.2
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9ca626910d252295b8926b6fb7f4f642" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9ca626910d252295b8926b6fb7f4f642-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9ca626910d252295b8926b6fb7f4f642", [d], options); $("#flot-9ca626910d252295b8926b6fb7f4f642").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9ca626910d252295b8926b6fb7f4f642-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9ca626910d252295b8926b6fb7f4f642-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9f20aa9b360aa43a27fa6a1ef27e9589" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9f20aa9b360aa43a27fa6a1ef27e9589-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9f20aa9b360aa43a27fa6a1ef27e9589", [d], options); $("#flot-9f20aa9b360aa43a27fa6a1ef27e9589").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9f20aa9b360aa43a27fa6a1ef27e9589-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9f20aa9b360aa43a27fa6a1ef27e9589-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.1
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2113164ad8b1f5becb7281cce44d9eeb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2113164ad8b1f5becb7281cce44d9eeb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2113164ad8b1f5becb7281cce44d9eeb", [d], options); $("#flot-2113164ad8b1f5becb7281cce44d9eeb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2113164ad8b1f5becb7281cce44d9eeb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2113164ad8b1f5becb7281cce44d9eeb-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-14532ab7880143d695f9797584d29283" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-14532ab7880143d695f9797584d29283-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-14532ab7880143d695f9797584d29283", [d], options); $("#flot-14532ab7880143d695f9797584d29283").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-14532ab7880143d695f9797584d29283-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-14532ab7880143d695f9797584d29283-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.5.0
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d0d36f95f7f3ef1416eca76e1452f9da" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d0d36f95f7f3ef1416eca76e1452f9da-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d0d36f95f7f3ef1416eca76e1452f9da", [d], options); $("#flot-d0d36f95f7f3ef1416eca76e1452f9da").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d0d36f95f7f3ef1416eca76e1452f9da-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d0d36f95f7f3ef1416eca76e1452f9da-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b939ee5a38880ad7d897849ba3189c16" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b939ee5a38880ad7d897849ba3189c16-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b939ee5a38880ad7d897849ba3189c16", [d], options); $("#flot-b939ee5a38880ad7d897849ba3189c16").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b939ee5a38880ad7d897849ba3189c16-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b939ee5a38880ad7d897849ba3189c16-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.45
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e078e2ce6f86674a45c24082fd181286" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e078e2ce6f86674a45c24082fd181286-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e078e2ce6f86674a45c24082fd181286", [d], options); $("#flot-e078e2ce6f86674a45c24082fd181286").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e078e2ce6f86674a45c24082fd181286-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e078e2ce6f86674a45c24082fd181286-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-036e70215cf18a340694845f6ed572b4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-036e70215cf18a340694845f6ed572b4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-036e70215cf18a340694845f6ed572b4", [d], options); $("#flot-036e70215cf18a340694845f6ed572b4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-036e70215cf18a340694845f6ed572b4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-036e70215cf18a340694845f6ed572b4-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.44
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8e92b5096810c6bea61fd0596c152b00" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8e92b5096810c6bea61fd0596c152b00-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8e92b5096810c6bea61fd0596c152b00", [d], options); $("#flot-8e92b5096810c6bea61fd0596c152b00").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8e92b5096810c6bea61fd0596c152b00-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8e92b5096810c6bea61fd0596c152b00-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0e2706577bd7e75815312911355f79ba" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0e2706577bd7e75815312911355f79ba-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0e2706577bd7e75815312911355f79ba", [d], options); $("#flot-0e2706577bd7e75815312911355f79ba").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0e2706577bd7e75815312911355f79ba-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0e2706577bd7e75815312911355f79ba-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.43
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-22147fe783700772b5a7cc4c02488a93" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-22147fe783700772b5a7cc4c02488a93-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-22147fe783700772b5a7cc4c02488a93", [d], options); $("#flot-22147fe783700772b5a7cc4c02488a93").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-22147fe783700772b5a7cc4c02488a93-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-22147fe783700772b5a7cc4c02488a93-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9dae85346a57b25bbc3f1f7c65263c9a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9dae85346a57b25bbc3f1f7c65263c9a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9dae85346a57b25bbc3f1f7c65263c9a", [d], options); $("#flot-9dae85346a57b25bbc3f1f7c65263c9a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9dae85346a57b25bbc3f1f7c65263c9a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9dae85346a57b25bbc3f1f7c65263c9a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.42
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e423290d8d065945e3f56f35cbc27f32" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e423290d8d065945e3f56f35cbc27f32-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e423290d8d065945e3f56f35cbc27f32", [d], options); $("#flot-e423290d8d065945e3f56f35cbc27f32").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e423290d8d065945e3f56f35cbc27f32-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e423290d8d065945e3f56f35cbc27f32-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-268cb37d26cf95673a059bc0a340e8ac" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-268cb37d26cf95673a059bc0a340e8ac-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-268cb37d26cf95673a059bc0a340e8ac", [d], options); $("#flot-268cb37d26cf95673a059bc0a340e8ac").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-268cb37d26cf95673a059bc0a340e8ac-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-268cb37d26cf95673a059bc0a340e8ac-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.41
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-067173626a748627cef048165814191a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-067173626a748627cef048165814191a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-067173626a748627cef048165814191a", [d], options); $("#flot-067173626a748627cef048165814191a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-067173626a748627cef048165814191a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-067173626a748627cef048165814191a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6e8145009b6cbc09ce91c56bba4e74df" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6e8145009b6cbc09ce91c56bba4e74df-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6e8145009b6cbc09ce91c56bba4e74df", [d], options); $("#flot-6e8145009b6cbc09ce91c56bba4e74df").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6e8145009b6cbc09ce91c56bba4e74df-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6e8145009b6cbc09ce91c56bba4e74df-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.40
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bcee280b523d3f54ae3c1a5c9bd4b7e8" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bcee280b523d3f54ae3c1a5c9bd4b7e8-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bcee280b523d3f54ae3c1a5c9bd4b7e8", [d], options); $("#flot-bcee280b523d3f54ae3c1a5c9bd4b7e8").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bcee280b523d3f54ae3c1a5c9bd4b7e8-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bcee280b523d3f54ae3c1a5c9bd4b7e8-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-68e52575de4bf5bc8682781f5669ce86" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-68e52575de4bf5bc8682781f5669ce86-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-68e52575de4bf5bc8682781f5669ce86", [d], options); $("#flot-68e52575de4bf5bc8682781f5669ce86").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-68e52575de4bf5bc8682781f5669ce86-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-68e52575de4bf5bc8682781f5669ce86-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.39
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7e6efdfc7dc38730ae9ade2205b8c2c6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7e6efdfc7dc38730ae9ade2205b8c2c6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7e6efdfc7dc38730ae9ade2205b8c2c6", [d], options); $("#flot-7e6efdfc7dc38730ae9ade2205b8c2c6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7e6efdfc7dc38730ae9ade2205b8c2c6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7e6efdfc7dc38730ae9ade2205b8c2c6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c4136ac89a5e1864545ff98d93e03bca" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c4136ac89a5e1864545ff98d93e03bca-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c4136ac89a5e1864545ff98d93e03bca", [d], options); $("#flot-c4136ac89a5e1864545ff98d93e03bca").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c4136ac89a5e1864545ff98d93e03bca-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c4136ac89a5e1864545ff98d93e03bca-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.38
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1534f7d6a6af6b61e510598ad22a939c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1534f7d6a6af6b61e510598ad22a939c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1534f7d6a6af6b61e510598ad22a939c", [d], options); $("#flot-1534f7d6a6af6b61e510598ad22a939c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1534f7d6a6af6b61e510598ad22a939c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1534f7d6a6af6b61e510598ad22a939c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7c90809fc704160553c1718708ac1a28" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7c90809fc704160553c1718708ac1a28-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7c90809fc704160553c1718708ac1a28", [d], options); $("#flot-7c90809fc704160553c1718708ac1a28").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7c90809fc704160553c1718708ac1a28-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7c90809fc704160553c1718708ac1a28-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.37
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-85e14e206f49b3a8c4eab04557d1a5dd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-85e14e206f49b3a8c4eab04557d1a5dd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-85e14e206f49b3a8c4eab04557d1a5dd", [d], options); $("#flot-85e14e206f49b3a8c4eab04557d1a5dd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-85e14e206f49b3a8c4eab04557d1a5dd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-85e14e206f49b3a8c4eab04557d1a5dd-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-de32d8a40f040e8f8304cde1b6eeb25e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-de32d8a40f040e8f8304cde1b6eeb25e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-de32d8a40f040e8f8304cde1b6eeb25e", [d], options); $("#flot-de32d8a40f040e8f8304cde1b6eeb25e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-de32d8a40f040e8f8304cde1b6eeb25e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-de32d8a40f040e8f8304cde1b6eeb25e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.36
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f8b978373ae1a16032cdb6873240912d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f8b978373ae1a16032cdb6873240912d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f8b978373ae1a16032cdb6873240912d", [d], options); $("#flot-f8b978373ae1a16032cdb6873240912d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f8b978373ae1a16032cdb6873240912d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f8b978373ae1a16032cdb6873240912d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5a0829e1c536cb7ff6b0de900929c434" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5a0829e1c536cb7ff6b0de900929c434-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5a0829e1c536cb7ff6b0de900929c434", [d], options); $("#flot-5a0829e1c536cb7ff6b0de900929c434").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5a0829e1c536cb7ff6b0de900929c434-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5a0829e1c536cb7ff6b0de900929c434-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.35
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-58ee77eff09b63bd6a7b7144492bc4fa" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-58ee77eff09b63bd6a7b7144492bc4fa-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-58ee77eff09b63bd6a7b7144492bc4fa", [d], options); $("#flot-58ee77eff09b63bd6a7b7144492bc4fa").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-58ee77eff09b63bd6a7b7144492bc4fa-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-58ee77eff09b63bd6a7b7144492bc4fa-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-62fdb7ab79378b9bded78e1ad4aca5b7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-62fdb7ab79378b9bded78e1ad4aca5b7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-62fdb7ab79378b9bded78e1ad4aca5b7", [d], options); $("#flot-62fdb7ab79378b9bded78e1ad4aca5b7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-62fdb7ab79378b9bded78e1ad4aca5b7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-62fdb7ab79378b9bded78e1ad4aca5b7-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.34
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0b8011a7269b458ad028ea410beb1459" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0b8011a7269b458ad028ea410beb1459-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0b8011a7269b458ad028ea410beb1459", [d], options); $("#flot-0b8011a7269b458ad028ea410beb1459").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0b8011a7269b458ad028ea410beb1459-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0b8011a7269b458ad028ea410beb1459-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-efba2124d1ef1633eb283701257d6db2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-efba2124d1ef1633eb283701257d6db2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-efba2124d1ef1633eb283701257d6db2", [d], options); $("#flot-efba2124d1ef1633eb283701257d6db2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-efba2124d1ef1633eb283701257d6db2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-efba2124d1ef1633eb283701257d6db2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.33
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-fb9c5a29e8165699352547621b515cfd" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-fb9c5a29e8165699352547621b515cfd-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-fb9c5a29e8165699352547621b515cfd", [d], options); $("#flot-fb9c5a29e8165699352547621b515cfd").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-fb9c5a29e8165699352547621b515cfd-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-fb9c5a29e8165699352547621b515cfd-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-56a0384bdcf33d0e4978c477c5f66263" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-56a0384bdcf33d0e4978c477c5f66263-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-56a0384bdcf33d0e4978c477c5f66263", [d], options); $("#flot-56a0384bdcf33d0e4978c477c5f66263").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-56a0384bdcf33d0e4978c477c5f66263-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-56a0384bdcf33d0e4978c477c5f66263-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.32
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-19e6acccbbfcb58fa2083d441a804a89" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-19e6acccbbfcb58fa2083d441a804a89-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-19e6acccbbfcb58fa2083d441a804a89", [d], options); $("#flot-19e6acccbbfcb58fa2083d441a804a89").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-19e6acccbbfcb58fa2083d441a804a89-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-19e6acccbbfcb58fa2083d441a804a89-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e7fc76d7f4bd7b9b17c9c607de522f80" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e7fc76d7f4bd7b9b17c9c607de522f80-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e7fc76d7f4bd7b9b17c9c607de522f80", [d], options); $("#flot-e7fc76d7f4bd7b9b17c9c607de522f80").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e7fc76d7f4bd7b9b17c9c607de522f80-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e7fc76d7f4bd7b9b17c9c607de522f80-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.31
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bc4fa4033f9bcc03e9954dedb1968b2d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bc4fa4033f9bcc03e9954dedb1968b2d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bc4fa4033f9bcc03e9954dedb1968b2d", [d], options); $("#flot-bc4fa4033f9bcc03e9954dedb1968b2d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bc4fa4033f9bcc03e9954dedb1968b2d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bc4fa4033f9bcc03e9954dedb1968b2d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-14c207d4b4f6385e777c93cd7b2a4d6b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-14c207d4b4f6385e777c93cd7b2a4d6b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-14c207d4b4f6385e777c93cd7b2a4d6b", [d], options); $("#flot-14c207d4b4f6385e777c93cd7b2a4d6b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-14c207d4b4f6385e777c93cd7b2a4d6b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-14c207d4b4f6385e777c93cd7b2a4d6b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.30
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b6bf866c41d8091aa2d009b0c35424d7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b6bf866c41d8091aa2d009b0c35424d7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b6bf866c41d8091aa2d009b0c35424d7", [d], options); $("#flot-b6bf866c41d8091aa2d009b0c35424d7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b6bf866c41d8091aa2d009b0c35424d7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b6bf866c41d8091aa2d009b0c35424d7-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f20130ea08a069be0e9d9e59c19b3de5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f20130ea08a069be0e9d9e59c19b3de5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f20130ea08a069be0e9d9e59c19b3de5", [d], options); $("#flot-f20130ea08a069be0e9d9e59c19b3de5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f20130ea08a069be0e9d9e59c19b3de5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f20130ea08a069be0e9d9e59c19b3de5-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.29
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-88086631798eb1c6d6425f3df065e3c2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-88086631798eb1c6d6425f3df065e3c2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-88086631798eb1c6d6425f3df065e3c2", [d], options); $("#flot-88086631798eb1c6d6425f3df065e3c2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-88086631798eb1c6d6425f3df065e3c2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-88086631798eb1c6d6425f3df065e3c2-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9a7c077e093116d8464b8a740006d5bc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9a7c077e093116d8464b8a740006d5bc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9a7c077e093116d8464b8a740006d5bc", [d], options); $("#flot-9a7c077e093116d8464b8a740006d5bc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9a7c077e093116d8464b8a740006d5bc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9a7c077e093116d8464b8a740006d5bc-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.28
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-74b83300ca732229d27a346cfe9bd388" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-74b83300ca732229d27a346cfe9bd388-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-74b83300ca732229d27a346cfe9bd388", [d], options); $("#flot-74b83300ca732229d27a346cfe9bd388").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-74b83300ca732229d27a346cfe9bd388-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-74b83300ca732229d27a346cfe9bd388-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-069d81fb4ec31fbf89b6ca5ee2244e3e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-069d81fb4ec31fbf89b6ca5ee2244e3e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-069d81fb4ec31fbf89b6ca5ee2244e3e", [d], options); $("#flot-069d81fb4ec31fbf89b6ca5ee2244e3e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-069d81fb4ec31fbf89b6ca5ee2244e3e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-069d81fb4ec31fbf89b6ca5ee2244e3e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.20
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-49dc40e9b27a5e58dde1b1c1e2cfec08" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-49dc40e9b27a5e58dde1b1c1e2cfec08-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-49dc40e9b27a5e58dde1b1c1e2cfec08", [d], options); $("#flot-49dc40e9b27a5e58dde1b1c1e2cfec08").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-49dc40e9b27a5e58dde1b1c1e2cfec08-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-49dc40e9b27a5e58dde1b1c1e2cfec08-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b1ee1388beb00573ef0ab81e2b7243c4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b1ee1388beb00573ef0ab81e2b7243c4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b1ee1388beb00573ef0ab81e2b7243c4", [d], options); $("#flot-b1ee1388beb00573ef0ab81e2b7243c4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b1ee1388beb00573ef0ab81e2b7243c4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b1ee1388beb00573ef0ab81e2b7243c4-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.19
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f430c98e9f3a91feff0276f187130634" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f430c98e9f3a91feff0276f187130634-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f430c98e9f3a91feff0276f187130634", [d], options); $("#flot-f430c98e9f3a91feff0276f187130634").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f430c98e9f3a91feff0276f187130634-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f430c98e9f3a91feff0276f187130634-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-869a7dfffae0b16e034814608ffecc7d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-869a7dfffae0b16e034814608ffecc7d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-869a7dfffae0b16e034814608ffecc7d", [d], options); $("#flot-869a7dfffae0b16e034814608ffecc7d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-869a7dfffae0b16e034814608ffecc7d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-869a7dfffae0b16e034814608ffecc7d-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.18
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a2164843fd0bc685ddb919c2e85a4316" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a2164843fd0bc685ddb919c2e85a4316-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a2164843fd0bc685ddb919c2e85a4316", [d], options); $("#flot-a2164843fd0bc685ddb919c2e85a4316").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a2164843fd0bc685ddb919c2e85a4316-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a2164843fd0bc685ddb919c2e85a4316-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-857015531c188e3dd41c2f649aacb709" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-857015531c188e3dd41c2f649aacb709-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-857015531c188e3dd41c2f649aacb709", [d], options); $("#flot-857015531c188e3dd41c2f649aacb709").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-857015531c188e3dd41c2f649aacb709-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-857015531c188e3dd41c2f649aacb709-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.17
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9ecba029396642a8111d395d093ef8dc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9ecba029396642a8111d395d093ef8dc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9ecba029396642a8111d395d093ef8dc", [d], options); $("#flot-9ecba029396642a8111d395d093ef8dc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9ecba029396642a8111d395d093ef8dc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9ecba029396642a8111d395d093ef8dc-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-fdbedf1f62ad1cccba5a93a160b7d6dc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-fdbedf1f62ad1cccba5a93a160b7d6dc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-fdbedf1f62ad1cccba5a93a160b7d6dc", [d], options); $("#flot-fdbedf1f62ad1cccba5a93a160b7d6dc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-fdbedf1f62ad1cccba5a93a160b7d6dc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-fdbedf1f62ad1cccba5a93a160b7d6dc-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.16
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8af89161401c1641a40d6c000d54f4d9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8af89161401c1641a40d6c000d54f4d9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8af89161401c1641a40d6c000d54f4d9", [d], options); $("#flot-8af89161401c1641a40d6c000d54f4d9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8af89161401c1641a40d6c000d54f4d9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8af89161401c1641a40d6c000d54f4d9-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1c63c32c5f6d4a7609da116de68aa180" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1c63c32c5f6d4a7609da116de68aa180-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1c63c32c5f6d4a7609da116de68aa180", [d], options); $("#flot-1c63c32c5f6d4a7609da116de68aa180").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1c63c32c5f6d4a7609da116de68aa180-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1c63c32c5f6d4a7609da116de68aa180-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.15
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cc629272dd2528033472ee62004e00cb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cc629272dd2528033472ee62004e00cb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cc629272dd2528033472ee62004e00cb", [d], options); $("#flot-cc629272dd2528033472ee62004e00cb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cc629272dd2528033472ee62004e00cb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cc629272dd2528033472ee62004e00cb-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f92c411aef7be9190f3a86e89bc00b59" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f92c411aef7be9190f3a86e89bc00b59-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f92c411aef7be9190f3a86e89bc00b59", [d], options); $("#flot-f92c411aef7be9190f3a86e89bc00b59").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f92c411aef7be9190f3a86e89bc00b59-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f92c411aef7be9190f3a86e89bc00b59-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.14
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b9cc0756968bb4fad32bc71cf38e59f1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b9cc0756968bb4fad32bc71cf38e59f1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b9cc0756968bb4fad32bc71cf38e59f1", [d], options); $("#flot-b9cc0756968bb4fad32bc71cf38e59f1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b9cc0756968bb4fad32bc71cf38e59f1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b9cc0756968bb4fad32bc71cf38e59f1-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-48a1fa8a1d04ecb3a76ab2593cccd534" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-48a1fa8a1d04ecb3a76ab2593cccd534-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-48a1fa8a1d04ecb3a76ab2593cccd534", [d], options); $("#flot-48a1fa8a1d04ecb3a76ab2593cccd534").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-48a1fa8a1d04ecb3a76ab2593cccd534-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-48a1fa8a1d04ecb3a76ab2593cccd534-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.13
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-df85275f96afb743fa05a45fda924111" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-df85275f96afb743fa05a45fda924111-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-df85275f96afb743fa05a45fda924111", [d], options); $("#flot-df85275f96afb743fa05a45fda924111").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-df85275f96afb743fa05a45fda924111-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-df85275f96afb743fa05a45fda924111-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-678c22192bfd55db0f9e312112cb5a7c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-678c22192bfd55db0f9e312112cb5a7c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-678c22192bfd55db0f9e312112cb5a7c", [d], options); $("#flot-678c22192bfd55db0f9e312112cb5a7c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-678c22192bfd55db0f9e312112cb5a7c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-678c22192bfd55db0f9e312112cb5a7c-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.12
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1c055a7b6f884ebb6d0366927e0ddbb5" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1c055a7b6f884ebb6d0366927e0ddbb5-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1c055a7b6f884ebb6d0366927e0ddbb5", [d], options); $("#flot-1c055a7b6f884ebb6d0366927e0ddbb5").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1c055a7b6f884ebb6d0366927e0ddbb5-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1c055a7b6f884ebb6d0366927e0ddbb5-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-09da8c13d897b153c85e5018f3a392f3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-09da8c13d897b153c85e5018f3a392f3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-09da8c13d897b153c85e5018f3a392f3", [d], options); $("#flot-09da8c13d897b153c85e5018f3a392f3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-09da8c13d897b153c85e5018f3a392f3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-09da8c13d897b153c85e5018f3a392f3-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.11
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4afd4f19d29de19df1fdca5191459d0a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4afd4f19d29de19df1fdca5191459d0a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4afd4f19d29de19df1fdca5191459d0a", [d], options); $("#flot-4afd4f19d29de19df1fdca5191459d0a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4afd4f19d29de19df1fdca5191459d0a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4afd4f19d29de19df1fdca5191459d0a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e444a5aa434f2510c693e37fc29c09e2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e444a5aa434f2510c693e37fc29c09e2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e444a5aa434f2510c693e37fc29c09e2", [d], options); $("#flot-e444a5aa434f2510c693e37fc29c09e2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e444a5aa434f2510c693e37fc29c09e2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e444a5aa434f2510c693e37fc29c09e2-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.10
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ddb14aa3dff1ff3f8ae37f69d5eb2fe4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ddb14aa3dff1ff3f8ae37f69d5eb2fe4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ddb14aa3dff1ff3f8ae37f69d5eb2fe4", [d], options); $("#flot-ddb14aa3dff1ff3f8ae37f69d5eb2fe4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ddb14aa3dff1ff3f8ae37f69d5eb2fe4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ddb14aa3dff1ff3f8ae37f69d5eb2fe4-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-1931abbc16ff669c0b7455dae795ec21" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-1931abbc16ff669c0b7455dae795ec21-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-1931abbc16ff669c0b7455dae795ec21", [d], options); $("#flot-1931abbc16ff669c0b7455dae795ec21").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-1931abbc16ff669c0b7455dae795ec21-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-1931abbc16ff669c0b7455dae795ec21-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.9
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-bff3e63e319bf97c1e7b9a80692630bb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-bff3e63e319bf97c1e7b9a80692630bb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-bff3e63e319bf97c1e7b9a80692630bb", [d], options); $("#flot-bff3e63e319bf97c1e7b9a80692630bb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-bff3e63e319bf97c1e7b9a80692630bb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-bff3e63e319bf97c1e7b9a80692630bb-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a039d72c8d762b43eb36be54112f6b34" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a039d72c8d762b43eb36be54112f6b34-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a039d72c8d762b43eb36be54112f6b34", [d], options); $("#flot-a039d72c8d762b43eb36be54112f6b34").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a039d72c8d762b43eb36be54112f6b34-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a039d72c8d762b43eb36be54112f6b34-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.8
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e67f996d98ab0943551acde820441219" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e67f996d98ab0943551acde820441219-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e67f996d98ab0943551acde820441219", [d], options); $("#flot-e67f996d98ab0943551acde820441219").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e67f996d98ab0943551acde820441219-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e67f996d98ab0943551acde820441219-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-01e348fd7e8815e02bdaf17b3a1e4999" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-01e348fd7e8815e02bdaf17b3a1e4999-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-01e348fd7e8815e02bdaf17b3a1e4999", [d], options); $("#flot-01e348fd7e8815e02bdaf17b3a1e4999").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-01e348fd7e8815e02bdaf17b3a1e4999-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-01e348fd7e8815e02bdaf17b3a1e4999-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.7
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9e6588539a9c805cde236625f5aa4871" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9e6588539a9c805cde236625f5aa4871-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9e6588539a9c805cde236625f5aa4871", [d], options); $("#flot-9e6588539a9c805cde236625f5aa4871").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9e6588539a9c805cde236625f5aa4871-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9e6588539a9c805cde236625f5aa4871-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b2aba793fe50318d909b6f6a45aaf76c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b2aba793fe50318d909b6f6a45aaf76c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b2aba793fe50318d909b6f6a45aaf76c", [d], options); $("#flot-b2aba793fe50318d909b6f6a45aaf76c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b2aba793fe50318d909b6f6a45aaf76c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b2aba793fe50318d909b6f6a45aaf76c-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.6
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9027ef7acbe041217c79cf4c36f223fe" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9027ef7acbe041217c79cf4c36f223fe-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9027ef7acbe041217c79cf4c36f223fe", [d], options); $("#flot-9027ef7acbe041217c79cf4c36f223fe").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9027ef7acbe041217c79cf4c36f223fe-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9027ef7acbe041217c79cf4c36f223fe-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-98664fe616606c510fb58e1c28fc26e4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-98664fe616606c510fb58e1c28fc26e4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-98664fe616606c510fb58e1c28fc26e4", [d], options); $("#flot-98664fe616606c510fb58e1c28fc26e4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-98664fe616606c510fb58e1c28fc26e4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-98664fe616606c510fb58e1c28fc26e4-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.5
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-470513e615c88348381abcc44cd71340" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-470513e615c88348381abcc44cd71340-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-470513e615c88348381abcc44cd71340", [d], options); $("#flot-470513e615c88348381abcc44cd71340").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-470513e615c88348381abcc44cd71340-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-470513e615c88348381abcc44cd71340-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-0d620a48fc369bdef28326e9759ea0f9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-0d620a48fc369bdef28326e9759ea0f9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-0d620a48fc369bdef28326e9759ea0f9", [d], options); $("#flot-0d620a48fc369bdef28326e9759ea0f9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-0d620a48fc369bdef28326e9759ea0f9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-0d620a48fc369bdef28326e9759ea0f9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.4
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a5c650719539ab636db7eccdd137a603" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a5c650719539ab636db7eccdd137a603-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a5c650719539ab636db7eccdd137a603", [d], options); $("#flot-a5c650719539ab636db7eccdd137a603").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a5c650719539ab636db7eccdd137a603-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a5c650719539ab636db7eccdd137a603-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ef8bae30a1a210b429bedd8209b8460f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ef8bae30a1a210b429bedd8209b8460f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ef8bae30a1a210b429bedd8209b8460f", [d], options); $("#flot-ef8bae30a1a210b429bedd8209b8460f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ef8bae30a1a210b429bedd8209b8460f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ef8bae30a1a210b429bedd8209b8460f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.3
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9b099a2248597e93c4d516be8361ce77" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9b099a2248597e93c4d516be8361ce77-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9b099a2248597e93c4d516be8361ce77", [d], options); $("#flot-9b099a2248597e93c4d516be8361ce77").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9b099a2248597e93c4d516be8361ce77-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9b099a2248597e93c4d516be8361ce77-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-947d6a663cf6b5694449b2b35d6ab978" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-947d6a663cf6b5694449b2b35d6ab978-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-947d6a663cf6b5694449b2b35d6ab978", [d], options); $("#flot-947d6a663cf6b5694449b2b35d6ab978").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-947d6a663cf6b5694449b2b35d6ab978-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-947d6a663cf6b5694449b2b35d6ab978-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.2
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-d42153ebb46dfd6c48130180ae1902a0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-d42153ebb46dfd6c48130180ae1902a0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-d42153ebb46dfd6c48130180ae1902a0", [d], options); $("#flot-d42153ebb46dfd6c48130180ae1902a0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-d42153ebb46dfd6c48130180ae1902a0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-d42153ebb46dfd6c48130180ae1902a0-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e503f2290407b2a39193df00676b50e6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e503f2290407b2a39193df00676b50e6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e503f2290407b2a39193df00676b50e6", [d], options); $("#flot-e503f2290407b2a39193df00676b50e6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e503f2290407b2a39193df00676b50e6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e503f2290407b2a39193df00676b50e6-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.1
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ae9c7583888bb76161d0c32fe1dcde11" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ae9c7583888bb76161d0c32fe1dcde11-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ae9c7583888bb76161d0c32fe1dcde11", [d], options); $("#flot-ae9c7583888bb76161d0c32fe1dcde11").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ae9c7583888bb76161d0c32fe1dcde11-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ae9c7583888bb76161d0c32fe1dcde11-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-47b469d36ec9e2b8428bdfa4694cb874" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-47b469d36ec9e2b8428bdfa4694cb874-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-47b469d36ec9e2b8428bdfa4694cb874", [d], options); $("#flot-47b469d36ec9e2b8428bdfa4694cb874").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-47b469d36ec9e2b8428bdfa4694cb874-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-47b469d36ec9e2b8428bdfa4694cb874-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.4.0
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6110b87e2090e10f97aa598e0db56b28" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6110b87e2090e10f97aa598e0db56b28-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6110b87e2090e10f97aa598e0db56b28", [d], options); $("#flot-6110b87e2090e10f97aa598e0db56b28").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6110b87e2090e10f97aa598e0db56b28-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6110b87e2090e10f97aa598e0db56b28-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3a358b060fbc6be785fe336cd7289df9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3a358b060fbc6be785fe336cd7289df9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3a358b060fbc6be785fe336cd7289df9", [d], options); $("#flot-3a358b060fbc6be785fe336cd7289df9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3a358b060fbc6be785fe336cd7289df9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3a358b060fbc6be785fe336cd7289df9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.27
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ebdb88feae0555129e6814425c331270" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ebdb88feae0555129e6814425c331270-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ebdb88feae0555129e6814425c331270", [d], options); $("#flot-ebdb88feae0555129e6814425c331270").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ebdb88feae0555129e6814425c331270-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ebdb88feae0555129e6814425c331270-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2d321e85bd49b949c40fd30728ccaa9b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2d321e85bd49b949c40fd30728ccaa9b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2d321e85bd49b949c40fd30728ccaa9b", [d], options); $("#flot-2d321e85bd49b949c40fd30728ccaa9b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2d321e85bd49b949c40fd30728ccaa9b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2d321e85bd49b949c40fd30728ccaa9b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.26
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-15520beff1de8c6b1e91015a8adc1d20" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-15520beff1de8c6b1e91015a8adc1d20-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-15520beff1de8c6b1e91015a8adc1d20", [d], options); $("#flot-15520beff1de8c6b1e91015a8adc1d20").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-15520beff1de8c6b1e91015a8adc1d20-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-15520beff1de8c6b1e91015a8adc1d20-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2638a6aeb0b8b63f048f6b664623b17a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2638a6aeb0b8b63f048f6b664623b17a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2638a6aeb0b8b63f048f6b664623b17a", [d], options); $("#flot-2638a6aeb0b8b63f048f6b664623b17a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2638a6aeb0b8b63f048f6b664623b17a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2638a6aeb0b8b63f048f6b664623b17a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.25
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6ba1e61d0f597841366abeee1d822ae6" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6ba1e61d0f597841366abeee1d822ae6-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6ba1e61d0f597841366abeee1d822ae6", [d], options); $("#flot-6ba1e61d0f597841366abeee1d822ae6").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6ba1e61d0f597841366abeee1d822ae6-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6ba1e61d0f597841366abeee1d822ae6-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f17213ec3431587038834eaacdfd138e" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f17213ec3431587038834eaacdfd138e-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f17213ec3431587038834eaacdfd138e", [d], options); $("#flot-f17213ec3431587038834eaacdfd138e").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f17213ec3431587038834eaacdfd138e-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f17213ec3431587038834eaacdfd138e-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.24
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-8aed5ccef134d387faa2f7ddbab6df82" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-8aed5ccef134d387faa2f7ddbab6df82-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-8aed5ccef134d387faa2f7ddbab6df82", [d], options); $("#flot-8aed5ccef134d387faa2f7ddbab6df82").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-8aed5ccef134d387faa2f7ddbab6df82-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-8aed5ccef134d387faa2f7ddbab6df82-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-6f8b3b62c3632ea304e5711ae4ac3ebb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-6f8b3b62c3632ea304e5711ae4ac3ebb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-6f8b3b62c3632ea304e5711ae4ac3ebb", [d], options); $("#flot-6f8b3b62c3632ea304e5711ae4ac3ebb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-6f8b3b62c3632ea304e5711ae4ac3ebb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-6f8b3b62c3632ea304e5711ae4ac3ebb-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.23
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e5cfac3e5a003c5748719a753f0c2c71" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e5cfac3e5a003c5748719a753f0c2c71-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e5cfac3e5a003c5748719a753f0c2c71", [d], options); $("#flot-e5cfac3e5a003c5748719a753f0c2c71").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e5cfac3e5a003c5748719a753f0c2c71-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e5cfac3e5a003c5748719a753f0c2c71-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-520c62200d3d52c5bf739c53659c99bc" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-520c62200d3d52c5bf739c53659c99bc-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-520c62200d3d52c5bf739c53659c99bc", [d], options); $("#flot-520c62200d3d52c5bf739c53659c99bc").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-520c62200d3d52c5bf739c53659c99bc-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-520c62200d3d52c5bf739c53659c99bc-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.22
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e802a9cc3a003c60b6c10a6029834f9b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e802a9cc3a003c60b6c10a6029834f9b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e802a9cc3a003c60b6c10a6029834f9b", [d], options); $("#flot-e802a9cc3a003c60b6c10a6029834f9b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e802a9cc3a003c60b6c10a6029834f9b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e802a9cc3a003c60b6c10a6029834f9b-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b8c5a7517329564ee75d54d3f53d5a8b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b8c5a7517329564ee75d54d3f53d5a8b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b8c5a7517329564ee75d54d3f53d5a8b", [d], options); $("#flot-b8c5a7517329564ee75d54d3f53d5a8b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b8c5a7517329564ee75d54d3f53d5a8b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b8c5a7517329564ee75d54d3f53d5a8b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.21
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-89063842ded83a1aaf8a356ac58676e4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-89063842ded83a1aaf8a356ac58676e4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-89063842ded83a1aaf8a356ac58676e4", [d], options); $("#flot-89063842ded83a1aaf8a356ac58676e4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-89063842ded83a1aaf8a356ac58676e4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-89063842ded83a1aaf8a356ac58676e4-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3cf8f4c88ee383471c75f8d43a2629f3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3cf8f4c88ee383471c75f8d43a2629f3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3cf8f4c88ee383471c75f8d43a2629f3", [d], options); $("#flot-3cf8f4c88ee383471c75f8d43a2629f3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3cf8f4c88ee383471c75f8d43a2629f3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3cf8f4c88ee383471c75f8d43a2629f3-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.20
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ec2031115f7a81d5c0416653378d1f80" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ec2031115f7a81d5c0416653378d1f80-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ec2031115f7a81d5c0416653378d1f80", [d], options); $("#flot-ec2031115f7a81d5c0416653378d1f80").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ec2031115f7a81d5c0416653378d1f80-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ec2031115f7a81d5c0416653378d1f80-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-5d092f8935b954f2153d4319ea19d18b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-5d092f8935b954f2153d4319ea19d18b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-5d092f8935b954f2153d4319ea19d18b", [d], options); $("#flot-5d092f8935b954f2153d4319ea19d18b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-5d092f8935b954f2153d4319ea19d18b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-5d092f8935b954f2153d4319ea19d18b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.19
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ccde7d065d1ffe36863b148637d8c327" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ccde7d065d1ffe36863b148637d8c327-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ccde7d065d1ffe36863b148637d8c327", [d], options); $("#flot-ccde7d065d1ffe36863b148637d8c327").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ccde7d065d1ffe36863b148637d8c327-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ccde7d065d1ffe36863b148637d8c327-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-dc374e1fc6f73723c0ef5038dce31396" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-dc374e1fc6f73723c0ef5038dce31396-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-dc374e1fc6f73723c0ef5038dce31396", [d], options); $("#flot-dc374e1fc6f73723c0ef5038dce31396").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-dc374e1fc6f73723c0ef5038dce31396-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-dc374e1fc6f73723c0ef5038dce31396-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.18
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9fa766c4bb8bcba4b7b2bd44a3da474d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9fa766c4bb8bcba4b7b2bd44a3da474d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9fa766c4bb8bcba4b7b2bd44a3da474d", [d], options); $("#flot-9fa766c4bb8bcba4b7b2bd44a3da474d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9fa766c4bb8bcba4b7b2bd44a3da474d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9fa766c4bb8bcba4b7b2bd44a3da474d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3cfe5f095581e6c0016e26789dc4d2f9" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3cfe5f095581e6c0016e26789dc4d2f9-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3cfe5f095581e6c0016e26789dc4d2f9", [d], options); $("#flot-3cfe5f095581e6c0016e26789dc4d2f9").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3cfe5f095581e6c0016e26789dc4d2f9-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3cfe5f095581e6c0016e26789dc4d2f9-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.17
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e84826858f90ca36670bb482422b847d" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e84826858f90ca36670bb482422b847d-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e84826858f90ca36670bb482422b847d", [d], options); $("#flot-e84826858f90ca36670bb482422b847d").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e84826858f90ca36670bb482422b847d-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e84826858f90ca36670bb482422b847d-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-76cd1c777237a5f54648197f8e39746a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-76cd1c777237a5f54648197f8e39746a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-76cd1c777237a5f54648197f8e39746a", [d], options); $("#flot-76cd1c777237a5f54648197f8e39746a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-76cd1c777237a5f54648197f8e39746a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-76cd1c777237a5f54648197f8e39746a-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.16
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-45027def454579f295fe6108682a7091" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-45027def454579f295fe6108682a7091-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-45027def454579f295fe6108682a7091", [d], options); $("#flot-45027def454579f295fe6108682a7091").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-45027def454579f295fe6108682a7091-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-45027def454579f295fe6108682a7091-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-be0a9289455a8818751f97068e7b2790" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-be0a9289455a8818751f97068e7b2790-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-be0a9289455a8818751f97068e7b2790", [d], options); $("#flot-be0a9289455a8818751f97068e7b2790").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-be0a9289455a8818751f97068e7b2790-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-be0a9289455a8818751f97068e7b2790-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.15
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-c9c586f14f3881c3901d7e4ab8434bd0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-c9c586f14f3881c3901d7e4ab8434bd0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-c9c586f14f3881c3901d7e4ab8434bd0", [d], options); $("#flot-c9c586f14f3881c3901d7e4ab8434bd0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-c9c586f14f3881c3901d7e4ab8434bd0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-c9c586f14f3881c3901d7e4ab8434bd0-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-db99060ba7cf797267f6aa67087a1f0b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-db99060ba7cf797267f6aa67087a1f0b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-db99060ba7cf797267f6aa67087a1f0b", [d], options); $("#flot-db99060ba7cf797267f6aa67087a1f0b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-db99060ba7cf797267f6aa67087a1f0b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-db99060ba7cf797267f6aa67087a1f0b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.14
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f93e2fd0ff6bb1f55d8b07747fe6ba05" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f93e2fd0ff6bb1f55d8b07747fe6ba05-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f93e2fd0ff6bb1f55d8b07747fe6ba05", [d], options); $("#flot-f93e2fd0ff6bb1f55d8b07747fe6ba05").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f93e2fd0ff6bb1f55d8b07747fe6ba05-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f93e2fd0ff6bb1f55d8b07747fe6ba05-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f866d98b9e81d2665fff8c945f4cde74" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f866d98b9e81d2665fff8c945f4cde74-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f866d98b9e81d2665fff8c945f4cde74", [d], options); $("#flot-f866d98b9e81d2665fff8c945f4cde74").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f866d98b9e81d2665fff8c945f4cde74-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f866d98b9e81d2665fff8c945f4cde74-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.13
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-e3445b47175cec2a2c1da2a8c657fb04" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-e3445b47175cec2a2c1da2a8c657fb04-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-e3445b47175cec2a2c1da2a8c657fb04", [d], options); $("#flot-e3445b47175cec2a2c1da2a8c657fb04").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-e3445b47175cec2a2c1da2a8c657fb04-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-e3445b47175cec2a2c1da2a8c657fb04-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-13e790b35aba056c375e07ad60665974" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-13e790b35aba056c375e07ad60665974-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-13e790b35aba056c375e07ad60665974", [d], options); $("#flot-13e790b35aba056c375e07ad60665974").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-13e790b35aba056c375e07ad60665974-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-13e790b35aba056c375e07ad60665974-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.12
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3b54884d81a75fe9845f744ad15faaa0" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3b54884d81a75fe9845f744ad15faaa0-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3b54884d81a75fe9845f744ad15faaa0", [d], options); $("#flot-3b54884d81a75fe9845f744ad15faaa0").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3b54884d81a75fe9845f744ad15faaa0-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3b54884d81a75fe9845f744ad15faaa0-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-7284587a9406280e73c3479d4d405804" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-7284587a9406280e73c3479d4d405804-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-7284587a9406280e73c3479d4d405804", [d], options); $("#flot-7284587a9406280e73c3479d4d405804").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-7284587a9406280e73c3479d4d405804-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-7284587a9406280e73c3479d4d405804-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.11
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-732e28fabcbcc1744951c1e343ff9c0a" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-732e28fabcbcc1744951c1e343ff9c0a-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-732e28fabcbcc1744951c1e343ff9c0a", [d], options); $("#flot-732e28fabcbcc1744951c1e343ff9c0a").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-732e28fabcbcc1744951c1e343ff9c0a-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-732e28fabcbcc1744951c1e343ff9c0a-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3217edc9eed67734a2deb771820f6451" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3217edc9eed67734a2deb771820f6451-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3217edc9eed67734a2deb771820f6451", [d], options); $("#flot-3217edc9eed67734a2deb771820f6451").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3217edc9eed67734a2deb771820f6451-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3217edc9eed67734a2deb771820f6451-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.10
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-ab66557fb41f1a42d69bdbfef466b731" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-ab66557fb41f1a42d69bdbfef466b731-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-ab66557fb41f1a42d69bdbfef466b731", [d], options); $("#flot-ab66557fb41f1a42d69bdbfef466b731").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-ab66557fb41f1a42d69bdbfef466b731-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-ab66557fb41f1a42d69bdbfef466b731-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-69bb1b7164d1f98019fd4f269f80195f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-69bb1b7164d1f98019fd4f269f80195f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-69bb1b7164d1f98019fd4f269f80195f", [d], options); $("#flot-69bb1b7164d1f98019fd4f269f80195f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-69bb1b7164d1f98019fd4f269f80195f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-69bb1b7164d1f98019fd4f269f80195f-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.9
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-643dd93b3cd391db5a4e9caa6e7421a1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-643dd93b3cd391db5a4e9caa6e7421a1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-643dd93b3cd391db5a4e9caa6e7421a1", [d], options); $("#flot-643dd93b3cd391db5a4e9caa6e7421a1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-643dd93b3cd391db5a4e9caa6e7421a1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-643dd93b3cd391db5a4e9caa6e7421a1-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-a38a1bd5d06d4502eab029672a5805d4" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-a38a1bd5d06d4502eab029672a5805d4-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-a38a1bd5d06d4502eab029672a5805d4", [d], options); $("#flot-a38a1bd5d06d4502eab029672a5805d4").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-a38a1bd5d06d4502eab029672a5805d4-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-a38a1bd5d06d4502eab029672a5805d4-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.8
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-f90a0bc64a9dc6e44ccab48b4cf1eace" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-f90a0bc64a9dc6e44ccab48b4cf1eace-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-f90a0bc64a9dc6e44ccab48b4cf1eace", [d], options); $("#flot-f90a0bc64a9dc6e44ccab48b4cf1eace").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-f90a0bc64a9dc6e44ccab48b4cf1eace-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-f90a0bc64a9dc6e44ccab48b4cf1eace-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-9b6c9490662fc4882004d7a28da79b35" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-9b6c9490662fc4882004d7a28da79b35-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-9b6c9490662fc4882004d7a28da79b35", [d], options); $("#flot-9b6c9490662fc4882004d7a28da79b35").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-9b6c9490662fc4882004d7a28da79b35-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-9b6c9490662fc4882004d7a28da79b35-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.7
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-17760b09ea242bb0db4635786e65d61c" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-17760b09ea242bb0db4635786e65d61c-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-17760b09ea242bb0db4635786e65d61c", [d], options); $("#flot-17760b09ea242bb0db4635786e65d61c").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-17760b09ea242bb0db4635786e65d61c-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-17760b09ea242bb0db4635786e65d61c-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b654cb6e6b4176ae78a9fc8890117883" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b654cb6e6b4176ae78a9fc8890117883-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b654cb6e6b4176ae78a9fc8890117883", [d], options); $("#flot-b654cb6e6b4176ae78a9fc8890117883").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b654cb6e6b4176ae78a9fc8890117883-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b654cb6e6b4176ae78a9fc8890117883-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.6
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-22e997bcdff6d35463bcd45ae2a1f771" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-22e997bcdff6d35463bcd45ae2a1f771-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-22e997bcdff6d35463bcd45ae2a1f771", [d], options); $("#flot-22e997bcdff6d35463bcd45ae2a1f771").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-22e997bcdff6d35463bcd45ae2a1f771-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-22e997bcdff6d35463bcd45ae2a1f771-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cfdba5a75f368a06d556b638bfd1a1fb" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cfdba5a75f368a06d556b638bfd1a1fb-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cfdba5a75f368a06d556b638bfd1a1fb", [d], options); $("#flot-cfdba5a75f368a06d556b638bfd1a1fb").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cfdba5a75f368a06d556b638bfd1a1fb-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cfdba5a75f368a06d556b638bfd1a1fb-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.5
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-21f36a5712054ac5ebe42bca78e6bc79" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-21f36a5712054ac5ebe42bca78e6bc79-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-21f36a5712054ac5ebe42bca78e6bc79", [d], options); $("#flot-21f36a5712054ac5ebe42bca78e6bc79").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-21f36a5712054ac5ebe42bca78e6bc79-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-21f36a5712054ac5ebe42bca78e6bc79-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-193103e744eeafaa26c0839ce771c198" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-193103e744eeafaa26c0839ce771c198-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-193103e744eeafaa26c0839ce771c198", [d], options); $("#flot-193103e744eeafaa26c0839ce771c198").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-193103e744eeafaa26c0839ce771c198-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-193103e744eeafaa26c0839ce771c198-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.4
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-b18ce6281499dbb1001fd8f4f23435b2" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-b18ce6281499dbb1001fd8f4f23435b2-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-b18ce6281499dbb1001fd8f4f23435b2", [d], options); $("#flot-b18ce6281499dbb1001fd8f4f23435b2").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-b18ce6281499dbb1001fd8f4f23435b2-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-b18ce6281499dbb1001fd8f4f23435b2-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-84cecbe287ac6e3f1cae643456a489e3" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-84cecbe287ac6e3f1cae643456a489e3-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-84cecbe287ac6e3f1cae643456a489e3", [d], options); $("#flot-84cecbe287ac6e3f1cae643456a489e3").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-84cecbe287ac6e3f1cae643456a489e3-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-84cecbe287ac6e3f1cae643456a489e3-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.3
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-694ffdb367f1f199752f8e62518ce5f7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-694ffdb367f1f199752f8e62518ce5f7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-694ffdb367f1f199752f8e62518ce5f7", [d], options); $("#flot-694ffdb367f1f199752f8e62518ce5f7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-694ffdb367f1f199752f8e62518ce5f7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-694ffdb367f1f199752f8e62518ce5f7-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-555efe42900fc3eb6a4940134a1a8ea1" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-555efe42900fc3eb6a4940134a1a8ea1-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-555efe42900fc3eb6a4940134a1a8ea1", [d], options); $("#flot-555efe42900fc3eb6a4940134a1a8ea1").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-555efe42900fc3eb6a4940134a1a8ea1-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-555efe42900fc3eb6a4940134a1a8ea1-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.2
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-4422c0e55bbf43991adf3e9a54b13418" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-4422c0e55bbf43991adf3e9a54b13418-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-4422c0e55bbf43991adf3e9a54b13418", [d], options); $("#flot-4422c0e55bbf43991adf3e9a54b13418").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-4422c0e55bbf43991adf3e9a54b13418-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-4422c0e55bbf43991adf3e9a54b13418-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-cad1a1347903e550a5219ed238159ef8" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-cad1a1347903e550a5219ed238159ef8-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-cad1a1347903e550a5219ed238159ef8", [d], options); $("#flot-cad1a1347903e550a5219ed238159ef8").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-cad1a1347903e550a5219ed238159ef8-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-cad1a1347903e550a5219ed238159ef8-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.1
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-3c2493e651b7cdeec909f34749a64908" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-3c2493e651b7cdeec909f34749a64908-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-3c2493e651b7cdeec909f34749a64908", [d], options); $("#flot-3c2493e651b7cdeec909f34749a64908").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-3c2493e651b7cdeec909f34749a64908-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-3c2493e651b7cdeec909f34749a64908-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-100b5ad6ee5d0227e5e1be0ca2876b9b" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-100b5ad6ee5d0227e5e1be0ca2876b9b-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-100b5ad6ee5d0227e5e1be0ca2876b9b", [d], options); $("#flot-100b5ad6ee5d0227e5e1be0ca2876b9b").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-100b5ad6ee5d0227e5e1be0ca2876b9b-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-100b5ad6ee5d0227e5e1be0ca2876b9b-tooltip").hide(); } }); // now connect the two }); </script> </div>
Output for 5.3.0
Warning: scandir(c:/keycounter): failed to open dir: No such file or directory in /in/nvWnR on line 2 Warning: scandir(): (errno 2): No such file or directory in /in/nvWnR on line 2 Warning: Invalid argument supplied for foreach() in /in/nvWnR on line 5 <script language="javascript" type="text/javascript" src="jquery-1.9.1.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="jquery.flot.time.js"></script> <style> .flot{ background: white; border-radius: 10px; border: 1px solid orange; padding: 10px; margin-bottom: 10px; } </style> Warning: Division by zero in /in/nvWnR on line 119 avg_k: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-2ae0e5d97f111138019fe056baf7593f" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-2ae0e5d97f111138019fe056baf7593f-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-2ae0e5d97f111138019fe056baf7593f", [d], options); $("#flot-2ae0e5d97f111138019fe056baf7593f").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-2ae0e5d97f111138019fe056baf7593f-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-2ae0e5d97f111138019fe056baf7593f-tooltip").hide(); } }); // now connect the two }); </script> </div> <br/> Warning: Division by zero in /in/nvWnR on line 124 avg_m: 0<br/><div class="plot" style="width: 1500px; height: 400px;"> <div id="flot-404b22b88264e933f533417fcf1261d7" style="height:100%; width: 100%; min-height: 200px; min-width: 300px;"></div> <script type="text/javascript"> $(function() { var d = []; // helper for returning the weekends in a period function weekendAreas(axes) { var markings = [], d = new Date(axes.xaxis.min); // go to the first Saturday d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)); d.setUTCSeconds(0); d.setUTCMinutes(0); d.setUTCHours(0); var i = d.getTime(); // when we dont set yaxis, the rectangle automatically // extends to infinity upwards and downwards do { markings.push({ xaxis: { from: i, to: i + 24 * 60 * 60 * 1000 } }); i += 7 * 24 * 60 * 60 * 1000; } while (i < axes.xaxis.max); return markings; } var options = { xaxis: { mode: "time", tickLength: 5, timeformat: "%d %b", monthNames: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des"] }, selection: { mode: "x" }, grid: { markings: weekendAreas, hoverable: true, }, }; $("<div id='flot-404b22b88264e933f533417fcf1261d7-tooltip'></div>").css({ position: "absolute", display: "none", border: "1px solid #ddd", padding: "2px", "background-color": "#eee", opacity: 0.80 }).appendTo("body"); var plot = $.plot("#flot-404b22b88264e933f533417fcf1261d7", [d], options); $("#flot-404b22b88264e933f533417fcf1261d7").bind("plothover", function (event, pos, item) { if (item) { var x = item.datapoint[0].toFixed(), y = item.datapoint[1].toFixed(); var date = new Date(x * 1); $("#flot-404b22b88264e933f533417fcf1261d7-tooltip").html(date.getFullYear()+ "/" + (date.getMonth() + 1) + "/" + date.getDate() + " ("+ y + ")") .css({top: item.pageY+0, left: item.pageX+25}) .fadeIn(200); } else { $("#flot-404b22b88264e933f533417fcf1261d7-tooltip").hide(); } }); // now connect the two }); </script> </div>

preferences:
334.63 ms | 413 KiB | 324 Q