summaryrefslogtreecommitdiff
path: root/datastore-leveldb/wwwroot/lib/flot-0.7/examples/realtime.html
diff options
context:
space:
mode:
authorEbus-at-dockstar <ebus@dockstar>2013-04-30 17:50:25 +0200
committerEbus-at-dockstar <ebus@dockstar>2013-04-30 17:50:52 +0200
commita3f3c9d7a9bb5237628eaa30b550c9cc5d3dcdc2 (patch)
tree61e49ad91c7472a5836bd51224e7d1195eb16a28 /datastore-leveldb/wwwroot/lib/flot-0.7/examples/realtime.html
parent5e002f200691d5fd9c46ff645668b82e17c2261b (diff)
downloadebus-alt-a3f3c9d7a9bb5237628eaa30b550c9cc5d3dcdc2.tar.gz
ebus-alt-a3f3c9d7a9bb5237628eaa30b550c9cc5d3dcdc2.zip
wwwroot_ebus
Diffstat (limited to 'datastore-leveldb/wwwroot/lib/flot-0.7/examples/realtime.html')
-rw-r--r--datastore-leveldb/wwwroot/lib/flot-0.7/examples/realtime.html83
1 files changed, 0 insertions, 83 deletions
diff --git a/datastore-leveldb/wwwroot/lib/flot-0.7/examples/realtime.html b/datastore-leveldb/wwwroot/lib/flot-0.7/examples/realtime.html
deleted file mode 100644
index 3b427e1..0000000
--- a/datastore-leveldb/wwwroot/lib/flot-0.7/examples/realtime.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>Flot Examples</title>
- <link href="layout.css" rel="stylesheet" type="text/css">
- <!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../excanvas.min.js"></script><![endif]-->
- <script language="javascript" type="text/javascript" src="../jquery.js"></script>
- <script language="javascript" type="text/javascript" src="../jquery.flot.js"></script>
- </head>
- <body>
- <h1>Flot Examples</h1>
-
- <div id="placeholder" style="width:600px;height:300px;"></div>
-
- <p>You can update a chart periodically to get a real-time effect
- by using a timer to insert the new data in the plot and redraw it.</p>
-
- <p>Time between updates: <input id="updateInterval" type="text" value="" style="text-align: right; width:5em"> milliseconds</p>
-
-<script type="text/javascript">
-$(function () {
- // we use an inline data source in the example, usually data would
- // be fetched from a server
- var data = [], totalPoints = 300;
- function getRandomData() {
- if (data.length > 0)
- data = data.slice(1);
-
- // do a random walk
- while (data.length < totalPoints) {
- var prev = data.length > 0 ? data[data.length - 1] : 50;
- var y = prev + Math.random() * 10 - 5;
- if (y < 0)
- y = 0;
- if (y > 100)
- y = 100;
- data.push(y);
- }
-
- // zip the generated y values with the x values
- var res = [];
- for (var i = 0; i < data.length; ++i)
- res.push([i, data[i]])
- return res;
- }
-
- // setup control widget
- var updateInterval = 30;
- $("#updateInterval").val(updateInterval).change(function () {
- var v = $(this).val();
- if (v && !isNaN(+v)) {
- updateInterval = +v;
- if (updateInterval < 1)
- updateInterval = 1;
- if (updateInterval > 2000)
- updateInterval = 2000;
- $(this).val("" + updateInterval);
- }
- });
-
- // setup plot
- var options = {
- series: { shadowSize: 0 }, // drawing is faster without shadows
- yaxis: { min: 0, max: 100 },
- xaxis: { show: false }
- };
- var plot = $.plot($("#placeholder"), [ getRandomData() ], options);
-
- function update() {
- plot.setData([ getRandomData() ]);
- // since the axes don't change, we don't need to call plot.setupGrid()
- plot.draw();
-
- setTimeout(update, updateInterval);
- }
-
- update();
-});
-</script>
-
- </body>
-</html>