<?php |
<?php |
include('common.inc.php'); |
include('common.inc.php'); |
$tgid = 44028; |
$tgid = 44028; |
include_header("fdds"); |
include_header("fdds"); |
?> |
?> |
<div class="span12"> |
<div class="span12"> |
|
|
<table width="100%" height="775px"><tr><td valign="middle"><span class="arrow-w" style="font-size:2em;"><</span></td><td width="95%"><div id="placeholder" style="width:100%;height:575px;"></div></td><td valign="middle"><span class="arrow-e" style="font-size:2em;">></span></td></tr></table> |
<table width="100%" height="775px"><tr><td valign="middle"><span class="arrow-w" style="font-size:2em;"><</span></td><td width="95%"><div id="placeholder" style="width:100%;height:575px;"></div></td><td valign="middle"><span class="arrow-e" style="font-size:2em;">></span></td></tr></table> |
<script> |
<script> |
var data = []; |
var data = []; |
var plot; |
var plot; |
var options = { |
var options = { |
lines: { show: true }, |
lines: { show: true }, |
points: { show: true }, |
points: { show: true }, |
xaxis: { mode: "time" }, |
xaxis : { |
|
mode : 'time', |
|
labelsAngle : 45 |
|
}, |
selection : { mode : 'x', fps : 30 }, |
selection : { mode : 'x', fps : 30 }, |
series: { |
series: { |
lines: { show: true }, |
lines: { show: true }, |
points: { show: true } |
points: { show: true } |
} |
}, |
|
mouse : { |
|
track : true, |
|
relative : true |
|
} |
}; |
}; |
$(function () { |
$(function () { |
// graph |
// graph |
|
|
|
|
var placeholder = document.getElementById("placeholder"); |
var placeholder = document.getElementById("placeholder"); |
|
|
drawGraph (options); |
drawGraph (options); |
|
|
// Hook into the 'flotr:select' event. |
// Hook into the 'flotr:select' event. |
Flotr.EventAdapter.observe(placeholder, 'flotr:select', function (area) { |
Flotr.EventAdapter.observe(placeholder, 'flotr:select', function (area) { |
|
|
// Draw graph with new area |
// Draw graph with new area |
graph = drawGraph({ |
graph = drawGraph({ |
xaxis: {min:area.x1, max:area.x2}, |
xaxis: {min:area.x1, max:area.x2, mode : 'time', labelsAngle : 45}, |
yaxis: {min:area.y1, max:area.y2} |
yaxis: {min:area.y1, max:area.y2} |
}); |
}); |
}); |
}); |
|
|
// When graph is clicked, draw the graph with default area. |
// When graph is clicked, draw the graph with default area. |
Flotr.EventAdapter.observe(placeholder, 'flotr:click', function () { drawGraph(); }); |
Flotr.EventAdapter.observe(placeholder, 'flotr:click', function () { drawGraph(); }); |
|
|
|
|
getData('<?php echo $tgid; ?>','<?php echo strtotime("10/09/2012") ?>','<?php echo strtotime("10/11/2012") ?>'); |
getData('<?php echo $tgid; ?>','<?php echo strtotime("10/09/2012") ?>','<?php echo strtotime("10/11/2012") ?>'); |
|
|
}); |
}); |
|
|
// Draw graph with default options, overwriting with passed options |
// Draw graph with default options, overwriting with passed options |
function drawGraph (opts) { |
function drawGraph (opts) { |
|
|
// Clone the options, so the 'options' variable always keeps intact. |
// Clone the options, so the 'options' variable always keeps intact. |
var o = Flotr._.extend(Flotr._.clone(options), opts || {}); |
var o = Flotr._.extend(Flotr._.clone(options), opts || {}); |
|
|
// Return a new graph. |
// Return a new graph. |
return Flotr.draw( |
return Flotr.draw( |
placeholder, |
placeholder, |
data, |
data, |
o |
o |
); |
); |
} |
} |
|
|
|
|
function onDataReceived(series) { |
function onDataReceived(series) { |
data =[] |
data =[] |
for (var key in series.data) { |
for (var key in series.data) { |
data[data.length] = {label: key, data: series.data[key]}; |
data[data.length] = {label: key, data: series.data[key]}; |
} |
} |
drawGraph (options); |
drawGraph (options); |
} |
} |
function getData(sensorID,from,to) { |
function getData(sensorID,from,to) { |
$.ajax({ |
$.ajax({ |
url: "<?php echo $basePath; ?>calls.json.php?action=graphcount&tgid="+sensorID+"&from="+from+"&to="+to, |
url: "<?php echo $basePath; ?>calls.json.php?action=graphcount&tgid="+sensorID+"&from="+from+"&to="+to, |
method: 'GET', |
method: 'GET', |
dataType: 'json', |
dataType: 'json', |
success: onDataReceived |
success: onDataReceived |
}); |
}); |
} |
} |
|
|
|
|
|
|
|
|
</script> |
</script> |
</div> |
</div> |
<?php |
<?php |
include_footer(); |
include_footer(); |
?> |
?> |