diff options
author | Ebus-at-dockstar <ebus@dockstar> | 2014-07-25 22:13:55 +0200 |
---|---|---|
committer | Ebus-at-dockstar <ebus@dockstar> | 2014-07-25 22:13:55 +0200 |
commit | f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8 (patch) | |
tree | 893a37289de684b95a6184c528e5c9c8547e7197 /datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples | |
parent | cfb0c10631bbbd31b525e7992b59de06d3c2e550 (diff) | |
download | ebus-alt-f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8.tar.gz ebus-alt-f6675ccdd7a5997def3c4656f0e2c5dbbbed1fc8.zip |
embed xexpr-path
Diffstat (limited to 'datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples')
38 files changed, 0 insertions, 2590 deletions
diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/ajax.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/ajax.html deleted file mode 100644 index 9b5ec85..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/ajax.html +++ /dev/null @@ -1,143 +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>Example of loading data dynamically with AJAX. Percentage change in GDP (source: <a href="http://epp.eurostat.ec.europa.eu/tgm/table.do?tab=table&init=1&plugin=1&language=en&pcode=tsieb020">Eurostat</a>). Click the buttons below.</p> - - <p>The data is fetched over HTTP, in this case directly from text - files. Usually the URL would point to some web server handler - (e.g. a PHP page or Java/.NET/Python/Ruby on Rails handler) that - extracts it from a database and serializes it to JSON.</p> - - <p> - <input class="fetchSeries" type="button" value="First dataset"> - - <a href="data-eu-gdp-growth.json">data</a> - - <span></span> - </p> - - <p> - <input class="fetchSeries" type="button" value="Second dataset"> - - <a href="data-japan-gdp-growth.json">data</a> - - <span></span> - </p> - - <p> - <input class="fetchSeries" type="button" value="Third dataset"> - - <a href="data-usa-gdp-growth.json">data</a> - - <span></span> - </p> - - <p>If you combine AJAX with setTimeout, you can poll the server - for new data.</p> - - <p> - <input class="dataUpdate" type="button" value="Poll for data"> - </p> - -<script type="text/javascript"> -$(function () { - var options = { - lines: { show: true }, - points: { show: true }, - xaxis: { tickDecimals: 0, tickSize: 1 } - }; - var data = []; - var placeholder = $("#placeholder"); - - $.plot(placeholder, data, options); - - - // fetch one series, adding to what we got - var alreadyFetched = {}; - - $("input.fetchSeries").click(function () { - var button = $(this); - - // find the URL in the link right next to us - var dataurl = button.siblings('a').attr('href'); - - // then fetch the data with jQuery - function onDataReceived(series) { - // extract the first coordinate pair so you can see that - // data is now an ordinary Javascript object - var firstcoordinate = '(' + series.data[0][0] + ', ' + series.data[0][1] + ')'; - - button.siblings('span').text('Fetched ' + series.label + ', first point: ' + firstcoordinate); - - // let's add it to our current data - if (!alreadyFetched[series.label]) { - alreadyFetched[series.label] = true; - data.push(series); - } - - // and plot all we got - $.plot(placeholder, data, options); - } - - $.ajax({ - url: dataurl, - method: 'GET', - dataType: 'json', - success: onDataReceived - }); - }); - - - // initiate a recurring data update - $("input.dataUpdate").click(function () { - // reset data - data = []; - alreadyFetched = {}; - - $.plot(placeholder, data, options); - - var iteration = 0; - - function fetchData() { - ++iteration; - - function onDataReceived(series) { - // we get all the data in one go, if we only got partial - // data, we could merge it with what we already got - data = [ series ]; - - $.plot($("#placeholder"), data, options); - } - - $.ajax({ - // usually, we'll just call the same URL, a script - // connected to a database, but in this case we only - // have static example files so we need to modify the - // URL - url: "data-eu-gdp-growth-" + iteration + ".json", - method: 'GET', - dataType: 'json', - success: onDataReceived - }); - - if (iteration < 5) - setTimeout(fetchData, 1000); - else { - data = []; - alreadyFetched = {}; - } - } - - setTimeout(fetchData, 1000); - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/annotating.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/annotating.html deleted file mode 100644 index 72c212b..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/annotating.html +++ /dev/null @@ -1,75 +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>Flot has support for simple background decorations such as - lines and rectangles. They can be useful for marking up certain - areas. You can easily add any HTML you need with standard DOM - manipulation, e.g. for labels. For drawing custom shapes there is - also direct access to the canvas.</p> - -<script type="text/javascript"> -$(function () { - // generate a dataset - var d1 = []; - for (var i = 0; i < 20; ++i) - d1.push([i, Math.sin(i)]); - - var data = [{ data: d1, label: "Pressure", color: "#333" }]; - - // setup background areas - var markings = [ - { color: '#f6f6f6', yaxis: { from: 1 } }, - { color: '#f6f6f6', yaxis: { to: -1 } }, - { color: '#000', lineWidth: 1, xaxis: { from: 2, to: 2 } }, - { color: '#000', lineWidth: 1, xaxis: { from: 8, to: 8 } } - ]; - - var placeholder = $("#placeholder"); - - // plot it - var plot = $.plot(placeholder, data, { - bars: { show: true, barWidth: 0.5, fill: 0.9 }, - xaxis: { ticks: [], autoscaleMargin: 0.02 }, - yaxis: { min: -2, max: 2 }, - grid: { markings: markings } - }); - - // add labels - var o; - - o = plot.pointOffset({ x: 2, y: -1.2}); - // we just append it to the placeholder which Flot already uses - // for positioning - placeholder.append('<div style="position:absolute;left:' + (o.left + 4) + 'px;top:' + o.top + 'px;color:#666;font-size:smaller">Warming up</div>'); - - o = plot.pointOffset({ x: 8, y: -1.2}); - placeholder.append('<div style="position:absolute;left:' + (o.left + 4) + 'px;top:' + o.top + 'px;color:#666;font-size:smaller">Actual measurements</div>'); - - // draw a little arrow on top of the last label to demonstrate - // canvas drawing - var ctx = plot.getCanvas().getContext("2d"); - ctx.beginPath(); - o.left += 4; - ctx.moveTo(o.left, o.top); - ctx.lineTo(o.left, o.top - 10); - ctx.lineTo(o.left + 10, o.top - 5); - ctx.lineTo(o.left, o.top); - ctx.fillStyle = "#000"; - ctx.fill(); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-down.gif b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-down.gif Binary files differdeleted file mode 100644 index e239d11..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-down.gif +++ /dev/null diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-left.gif b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-left.gif Binary files differdeleted file mode 100644 index 93ffd5a..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-left.gif +++ /dev/null diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-right.gif b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-right.gif Binary files differdeleted file mode 100644 index 5fd0530..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-right.gif +++ /dev/null diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-up.gif b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-up.gif Binary files differdeleted file mode 100644 index 7d19626..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/arrow-up.gif +++ /dev/null diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/basic.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/basic.html deleted file mode 100644 index b116d94..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/basic.html +++ /dev/null @@ -1,38 +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>Simple example. You don't need to specify much to get an - attractive look. Put in a placeholder, make sure you set its - dimensions (otherwise the plot library will barf) and call the - plot function with the data. The axes are automatically - scaled.</p> - -<script type="text/javascript"> -$(function () { - var d1 = []; - for (var i = 0; i < 14; i += 0.5) - d1.push([i, Math.sin(i)]); - - var d2 = [[0, 3], [4, 8], [8, 5], [9, 13]]; - - // a null signifies separate line segments - var d3 = [[0, 12], [7, 12], null, [7, 2.5], [12, 2.5]]; - - $.plot($("#placeholder"), [ d1, d2, d3 ]); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-1.json b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-1.json deleted file mode 100644 index 51952cf..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-1.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Europe (EU27)", - "data": [[1999, 3.0], [2000, 3.9]] -} diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-2.json b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-2.json deleted file mode 100644 index 82004d6..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-2.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Europe (EU27)", - "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] -} diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-3.json b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-3.json deleted file mode 100644 index 8684479..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-3.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Europe (EU27)", - "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5]] -} diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-4.json b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-4.json deleted file mode 100644 index b363578..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-4.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Europe (EU27)", - "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1]] -} diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-5.json b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-5.json deleted file mode 100644 index a7e1e13..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth-5.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Europe (EU27)", - "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] -} diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth.json b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth.json deleted file mode 100644 index a7e1e13..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-eu-gdp-growth.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Europe (EU27)", - "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] -} diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-japan-gdp-growth.json b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-japan-gdp-growth.json deleted file mode 100644 index 855477c..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-japan-gdp-growth.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "Japan", - "data": [[1999, -0.1], [2000, 2.9], [2001, 0.2], [2002, 0.3], [2003, 1.4], [2004, 2.7], [2005, 1.9], [2006, 2.0], [2007, 2.3], [2008, -0.7]] -} diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-usa-gdp-growth.json b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-usa-gdp-growth.json deleted file mode 100644 index 33f66c6..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/data-usa-gdp-growth.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "label": "USA", - "data": [[1999, 4.4], [2000, 3.7], [2001, 0.8], [2002, 1.6], [2003, 2.5], [2004, 3.6], [2005, 2.9], [2006, 2.8], [2007, 2.0], [2008, 1.1]] -} diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/graph-types.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/graph-types.html deleted file mode 100644 index dd21a31..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/graph-types.html +++ /dev/null @@ -1,75 +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>Flot supports lines, points, filled areas, bars and any - combinations of these, in the same plot and even on the same data - series.</p> - -<script type="text/javascript"> -$(function () { - var d1 = []; - for (var i = 0; i < 14; i += 0.5) - d1.push([i, Math.sin(i)]); - - var d2 = [[0, 3], [4, 8], [8, 5], [9, 13]]; - - var d3 = []; - for (var i = 0; i < 14; i += 0.5) - d3.push([i, Math.cos(i)]); - - var d4 = []; - for (var i = 0; i < 14; i += 0.1) - d4.push([i, Math.sqrt(i * 10)]); - - var d5 = []; - for (var i = 0; i < 14; i += 0.5) - d5.push([i, Math.sqrt(i)]); - - var d6 = []; - for (var i = 0; i < 14; i += 0.5 + Math.random()) - d6.push([i, Math.sqrt(2*i + Math.sin(i) + 5)]); - - $.plot($("#placeholder"), [ - { - data: d1, - lines: { show: true, fill: true } - }, - { - data: d2, - bars: { show: true } - }, - { - data: d3, - points: { show: true } - }, - { - data: d4, - lines: { show: true } - }, - { - data: d5, - lines: { show: true }, - points: { show: true } - }, - { - data: d6, - lines: { show: true, steps: true } - } - ]); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/hs-2004-27-a-large_web.jpg b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/hs-2004-27-a-large_web.jpg Binary files differdeleted file mode 100644 index a1d5c05..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/hs-2004-27-a-large_web.jpg +++ /dev/null diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/image.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/image.html deleted file mode 100644 index 073ad43..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/image.html +++ /dev/null @@ -1,45 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.image.js"></script> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:400px;height:400px;"></div> - - <p>The Cat's Eye Nebula (<a href="http://hubblesite.org/gallery/album/nebula/pr2004027a/">picture from Hubble</a>).</p> - - <p>With the image plugin, you can plot images. This is for example - useful for getting ticks on complex prerendered visualizations. - Instead of inputting data points, you put in the images and where - their two opposite corners are supposed to be in plot space.</p> - - <p>Images represent a little further complication because you need - to make sure they are loaded before you can use them (Flot skips - incomplete images). The plugin comes with a couple of helpers - for doing that.</p> - -<script type="text/javascript"> -$(function () { - var data = [ [ ["hs-2004-27-a-large_web.jpg", -10, -10, 10, 10] ] ]; - var options = { - series: { images: { show: true } }, - xaxis: { min: -8, max: 4 }, - yaxis: { min: -8, max: 4 } - }; - - $.plot.image.loadDataImages(data, options, function () { - $.plot($("#placeholder"), data, options); - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/index.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/index.html deleted file mode 100644 index f24f750..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/index.html +++ /dev/null @@ -1,44 +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"> - </head> - <body> - <h1>Flot Examples</h1> - - <p>Here are some examples for <a href="http://code.google.com/p/flot/">Flot</a>, the Javascript charting library for jQuery:</p> - - <ul> - <li><a href="basic.html">Basic example</a></li> - <li><a href="graph-types.html">Different graph types</a></li> - <li><a href="setting-options.html">Setting various options</a> and <a href="annotating.html">annotating a chart</a></li> - <li><a href="ajax.html">Updating graphs with AJAX</a> and <a href="realtime.html">real-time updates</a></li> - </ul> - - <p>Being interactive:</p> - - <ul> - <li><a href="turning-series.html">Turning series on/off</a></li> - <li><a href="selection.html">Rectangular selection support and zooming</a> and <a href="zooming.html">zooming with overview</a> (both with selection plugin)</li> - <li><a href="interacting.html">Interacting with the data points</a></li> - <li><a href="navigate.html">Panning and zooming</a> (with navigation plugin)</li> - <li><a href="resize.html">Automatically redraw when window is resized</a> (with resize plugin)</li> - </ul> - - <p>Various features:</p> - - <ul> - <li><a href="symbols.html">Using other symbols than circles for points</a> (with symbol plugin)</li> - <li><a href="time.html">Plotting time series</a> and <a href="visitors.html">visitors per day with zooming and weekends</a> (with selection plugin)</li> - <li><a href="multiple-axes.html">Multiple axes</a> and <a href="interacting-axes.html">interacting with the axes</a></li> - <li><a href="thresholding.html">Thresholding the data</a> (with threshold plugin)</li> - <li><a href="stacking.html">Stacked charts</a> (with stacking plugin)</li> - <li><a href="percentiles.html">Using filled areas to plot percentiles</a> (with fillbetween plugin)</li> - <li><a href="tracking.html">Tracking curves with crosshair</a> (with crosshair plugin)</li> - <li><a href="image.html">Plotting prerendered images</a> (with image plugin)</li> - <li><a href="pie.html">Pie charts</a> (with pie plugin)</li> - </ul> - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/interacting-axes.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/interacting-axes.html deleted file mode 100644 index 5b6e3bb..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/interacting-axes.html +++ /dev/null @@ -1,97 +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>With multiple axes, you sometimes need to interact with them. A - simple way to do this is to draw the plot, deduce the axis - placements and insert a couple of divs on top to catch events. - Try clicking an axis.</p> - - <p id="click"></p> - -<script type="text/javascript"> -$(function () { - function generate(start, end, fn) { - var res = []; - for (var i = 0; i <= 100; ++i) { - var x = start + i / 100 * (end - start); - res.push([x, fn(x)]); - } - return res; - } - - var data = [ - { data: generate(0, 10, function (x) { return Math.sqrt(x)}), xaxis: 1, yaxis:1 }, - { data: generate(0, 10, function (x) { return Math.sin(x)}), xaxis: 1, yaxis:2 }, - { data: generate(0, 10, function (x) { return Math.cos(x)}), xaxis: 1, yaxis:3 }, - { data: generate(2, 10, function (x) { return Math.tan(x)}), xaxis: 2, yaxis: 4 } - ]; - - var plot = $.plot($("#placeholder"), - data, - { - xaxes: [ - { position: 'bottom' }, - { position: 'top'} - ], - yaxes: [ - { position: 'left' }, - { position: 'left' }, - { position: 'right' }, - { position: 'left' } - ] - }); - - // now for each axis, create a div - - function getBoundingBoxForAxis(plot, axis) { - var left = axis.box.left, top = axis.box.top, - right = left + axis.box.width, bottom = top + axis.box.height; - - // some ticks may stick out, enlarge the box to encompass all ticks - var cls = axis.direction + axis.n + 'Axis'; - plot.getPlaceholder().find('.' + cls + ' .tickLabel').each(function () { - var pos = $(this).position(); - left = Math.min(pos.left, left); - top = Math.min(pos.top, top); - right = Math.max(Math.round(pos.left) + $(this).outerWidth(), right); - bottom = Math.max(Math.round(pos.top) + $(this).outerHeight(), bottom); - }); - - return { left: left, top: top, width: right - left, height: bottom - top }; - } - - $.each(plot.getAxes(), function (i, axis) { - if (!axis.show) - return; - - var box = getBoundingBoxForAxis(plot, axis); - - $('<div class="axisTarget" style="position:absolute;left:' + box.left + 'px;top:' + box.top + 'px;width:' + box.width + 'px;height:' + box.height + 'px"></div>') - .data('axis.direction', axis.direction) - .data('axis.n', axis.n) - .css({ backgroundColor: "#f00", opacity: 0, cursor: "pointer" }) - .appendTo(plot.getPlaceholder()) - .hover( - function () { $(this).css({ opacity: 0.10 }) }, - function () { $(this).css({ opacity: 0 }) } - ) - .click(function () { - $("#click").text("You clicked the " + axis.direction + axis.n + "axis!") - }); - }); -}); -</script> - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/interacting.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/interacting.html deleted file mode 100644 index d04eedd..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/interacting.html +++ /dev/null @@ -1,93 +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>One of the goals of Flot is to support user interactions. Try - pointing and clicking on the points.</p> - - <p id="hoverdata">Mouse hovers at - (<span id="x">0</span>, <span id="y">0</span>). <span id="clickdata"></span></p> - - <p>A tooltip is easy to build with a bit of jQuery code and the - data returned from the plot.</p> - - <p><input id="enableTooltip" type="checkbox">Enable tooltip</p> - -<script type="text/javascript"> -$(function () { - var sin = [], cos = []; - for (var i = 0; i < 14; i += 0.5) { - sin.push([i, Math.sin(i)]); - cos.push([i, Math.cos(i)]); - } - - var plot = $.plot($("#placeholder"), - [ { data: sin, label: "sin(x)"}, { data: cos, label: "cos(x)" } ], { - series: { - lines: { show: true }, - points: { show: true } - }, - grid: { hoverable: true, clickable: true }, - yaxis: { min: -1.2, max: 1.2 } - }); - - function showTooltip(x, y, contents) { - $('<div id="tooltip">' + contents + '</div>').css( { - position: 'absolute', - display: 'none', - top: y + 5, - left: x + 5, - border: '1px solid #fdd', - padding: '2px', - 'background-color': '#fee', - opacity: 0.80 - }).appendTo("body").fadeIn(200); - } - - var previousPoint = null; - $("#placeholder").bind("plothover", function (event, pos, item) { - $("#x").text(pos.x.toFixed(2)); - $("#y").text(pos.y.toFixed(2)); - - if ($("#enableTooltip:checked").length > 0) { - if (item) { - if (previousPoint != item.dataIndex) { - previousPoint = item.dataIndex; - - $("#tooltip").remove(); - var x = item.datapoint[0].toFixed(2), - y = item.datapoint[1].toFixed(2); - - showTooltip(item.pageX, item.pageY, - item.series.label + " of " + x + " = " + y); - } - } - else { - $("#tooltip").remove(); - previousPoint = null; - } - } - }); - - $("#placeholder").bind("plotclick", function (event, pos, item) { - if (item) { - $("#clickdata").text("You clicked point " + item.dataIndex + " in " + item.series.label + "."); - plot.highlight(item.series, item.datapoint); - } - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/layout.css b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/layout.css deleted file mode 100644 index 7ef7dd4..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/layout.css +++ /dev/null @@ -1,6 +0,0 @@ -body { - font-family: sans-serif; - font-size: 16px; - margin: 50px; - max-width: 800px; -} diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/multiple-axes.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/multiple-axes.html deleted file mode 100644 index 4b32e64..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/multiple-axes.html +++ /dev/null @@ -1,60 +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>Multiple axis support showing the raw oil price in US $/barrel of - crude oil vs. the exchange rate from US $ to €.</p> - - <p>As illustrated, you can put in multiple axes if you - need to. For each data series, simply specify the axis number. - In the options, you can then configure where you want the extra - axes to appear.</p> - - <p>Position axis <button>left</button> or <button>right</button>.</p> - -<script type="text/javascript"> -$(function () { - var oilprices = [[1167692400000,61.05], [1167778800000,58.32], [1167865200000,57.35], [1167951600000,56.31], [1168210800000,55.55], [1168297200000,55.64], [1168383600000,54.02], [1168470000000,51.88], [1168556400000,52.99], [1168815600000,52.99], [1168902000000,51.21], [1168988400000,52.24], [1169074800000,50.48], [1169161200000,51.99], [1169420400000,51.13], [1169506800000,55.04], [1169593200000,55.37], [1169679600000,54.23], [1169766000000,55.42], [1170025200000,54.01], [1170111600000,56.97], [1170198000000,58.14], [1170284400000,58.14], [1170370800000,59.02], [1170630000000,58.74], [1170716400000,58.88], [1170802800000,57.71], [1170889200000,59.71], [1170975600000,59.89], [1171234800000,57.81], [1171321200000,59.06], [1171407600000,58.00], [1171494000000,57.99], [1171580400000,59.39], [1171839600000,59.39], [1171926000000,58.07], [1172012400000,60.07], [1172098800000,61.14], [1172444400000,61.39], [1172530800000,61.46], [1172617200000,61.79], [1172703600000,62.00], [1172790000000,60.07], [1173135600000,60.69], [1173222000000,61.82], [1173308400000,60.05], [1173654000000,58.91], [1173740400000,57.93], [1173826800000,58.16], [1173913200000,57.55], [1173999600000,57.11], [1174258800000,56.59], [1174345200000,59.61], [1174518000000,61.69], [1174604400000,62.28], [1174860000000,62.91], [1174946400000,62.93], [1175032800000,64.03], [1175119200000,66.03], [1175205600000,65.87], [1175464800000,64.64], [1175637600000,64.38], [1175724000000,64.28], [1175810400000,64.28], [1176069600000,61.51], [1176156000000,61.89], [1176242400000,62.01], [1176328800000,63.85], [1176415200000,63.63], [1176674400000,63.61], [1176760800000,63.10], [1176847200000,63.13], [1176933600000,61.83], [1177020000000,63.38], [1177279200000,64.58], [1177452000000,65.84], [1177538400000,65.06], [1177624800000,66.46], [1177884000000,64.40], [1178056800000,63.68], [1178143200000,63.19], [1178229600000,61.93], [1178488800000,61.47], [1178575200000,61.55], [1178748000000,61.81], [1178834400000,62.37], [1179093600000,62.46], [1179180000000,63.17], [1179266400000,62.55], [1179352800000,64.94], [1179698400000,66.27], [1179784800000,65.50], [1179871200000,65.77], [1179957600000,64.18], [1180044000000,65.20], [1180389600000,63.15], [1180476000000,63.49], [1180562400000,65.08], [1180908000000,66.30], [1180994400000,65.96], [1181167200000,66.93], [1181253600000,65.98], [1181599200000,65.35], [1181685600000,66.26], [1181858400000,68.00], [1182117600000,69.09], [1182204000000,69.10], [1182290400000,68.19], [1182376800000,68.19], [1182463200000,69.14], [1182722400000,68.19], [1182808800000,67.77], [1182895200000,68.97], [1182981600000,69.57], [1183068000000,70.68], [1183327200000,71.09], [1183413600000,70.92], [1183586400000,71.81], [1183672800000,72.81], [1183932000000,72.19], [1184018400000,72.56], [1184191200000,72.50], [1184277600000,74.15], [1184623200000,75.05], [1184796000000,75.92], [1184882400000,75.57], [1185141600000,74.89], [1185228000000,73.56], [1185314400000,75.57], [1185400800000,74.95], [1185487200000,76.83], [1185832800000,78.21], [1185919200000,76.53], [1186005600000,76.86], [1186092000000,76.00], [1186437600000,71.59], [1186696800000,71.47], [1186956000000,71.62], [1187042400000,71.00], [1187301600000,71.98], [1187560800000,71.12], [1187647200000,69.47], [1187733600000,69.26], [1187820000000,69.83], [1187906400000,71.09], [1188165600000,71.73], [1188338400000,73.36], [1188511200000,74.04], [1188856800000,76.30], [1189116000000,77.49], [1189461600000,78.23], [1189548000000,79.91], [1189634400000,80.09], [1189720800000,79.10], [1189980000000,80.57], [1190066400000,81.93], [1190239200000,83.32], [1190325600000,81.62], [1190584800000,80.95], [1190671200000,79.53], [1190757600000,80.30], [1190844000000,82.88], [1190930400000,81.66], [1191189600000,80.24], [1191276000000,80.05], [1191362400000,79.94], [1191448800000,81.44], [1191535200000,81.22], [1191794400000,79.02], [1191880800000,80.26], [1191967200000,80.30], [1192053600000,83.08], [1192140000000,83.69], [1192399200000,86.13], [1192485600000,87.61], [1192572000000,87.40], [1192658400000,89.47], [1192744800000,88.60], [1193004000000,87.56], [1193090400000,87.56], [1193176800000,87.10], [1193263200000,91.86], [1193612400000,93.53], [1193698800000,94.53], [1193871600000,95.93], [1194217200000,93.98], [1194303600000,96.37], [1194476400000,95.46], [1194562800000,96.32], [1195081200000,93.43], [1195167600000,95.10], [1195426800000,94.64], [1195513200000,95.10], [1196031600000,97.70], [1196118000000,94.42], [1196204400000,90.62], [1196290800000,91.01], [1196377200000,88.71], [1196636400000,88.32], [1196809200000,90.23], [1196982000000,88.28], [1197241200000,87.86], [1197327600000,90.02], [1197414000000,92.25], [1197586800000,90.63], [1197846000000,90.63], [1197932400000,90.49], [1198018800000,91.24], [1198105200000,91.06], [1198191600000,90.49], [1198710000000,96.62], [1198796400000,96.00], [1199142000000,99.62], [1199314800000,99.18], [1199401200000,95.09], [1199660400000,96.33], [1199833200000,95.67], [1200351600000,91.90], [1200438000000,90.84], [1200524400000,90.13], [1200610800000,90.57], [1200956400000,89.21], [1201042800000,86.99], [1201129200000,89.85], [1201474800000,90.99], [1201561200000,91.64], [1201647600000,92.33], [1201734000000,91.75], [1202079600000,90.02], [1202166000000,88.41], [1202252400000,87.14], [1202338800000,88.11], [1202425200000,91.77], [1202770800000,92.78], [1202857200000,93.27], [1202943600000,95.46], [1203030000000,95.46], [1203289200000,101.74], [1203462000000,98.81], [1203894000000,100.88], [1204066800000,99.64], [1204153200000,102.59], [1204239600000,101.84], [1204498800000,99.52], [1204585200000,99.52], [1204671600000,104.52], [1204758000000,105.47], [1204844400000,105.15], [1205103600000,108.75], [1205276400000,109.92], [1205362800000,110.33], [1205449200000,110.21], [1205708400000,105.68], [1205967600000,101.84], [1206313200000,100.86], [1206399600000,101.22], [1206486000000,105.90], [1206572400000,107.58], [1206658800000,105.62], [1206914400000,101.58], [1207000800000,100.98], [1207173600000,103.83], [1207260000000,106.23], [1207605600000,108.50], [1207778400000,110.11], [1207864800000,110.14], [1208210400000,113.79], [1208296800000,114.93], [1208383200000,114.86], [1208728800000,117.48], [1208815200000,118.30], [1208988000000,116.06], [1209074400000,118.52], [1209333600000,118.75], [1209420000000,113.46], [1209592800000,112.52], [1210024800000,121.84], [1210111200000,123.53], [1210197600000,123.69], [1210543200000,124.23], [1210629600000,125.80], [1210716000000,126.29], [1211148000000,127.05], [1211320800000,129.07], [1211493600000,132.19], [1211839200000,128.85], [1212357600000,127.76], [1212703200000,138.54], [1212962400000,136.80], [1213135200000,136.38], [1213308000000,134.86], [1213653600000,134.01], [1213740000000,136.68], [1213912800000,135.65], [1214172000000,134.62], [1214258400000,134.62], [1214344800000,134.62], [1214431200000,139.64], [1214517600000,140.21], [1214776800000,140.00], [1214863200000,140.97], [1214949600000,143.57], [1215036000000,145.29], [1215381600000,141.37], [1215468000000,136.04], [1215727200000,146.40], [1215986400000,145.18], [1216072800000,138.74], [1216159200000,134.60], [1216245600000,129.29], [1216332000000,130.65], [1216677600000,127.95], [1216850400000,127.95], [1217282400000,122.19], [1217455200000,124.08], [1217541600000,125.10], [1217800800000,121.41], [1217887200000,119.17], [1217973600000,118.58], [1218060000000,120.02], [1218405600000,114.45], [1218492000000,113.01], [1218578400000,116.00], [1218751200000,113.77], [1219010400000,112.87], [1219096800000,114.53], [1219269600000,114.98], [1219356000000,114.98], [1219701600000,116.27], [1219788000000,118.15], [1219874400000,115.59], [1219960800000,115.46], [1220306400000,109.71], [1220392800000,109.35], [1220565600000,106.23], [1220824800000,106.34]]; - var exchangerates = [[1167606000000,0.7580], [1167692400000,0.7580], [1167778800000,0.75470], [1167865200000,0.75490], [1167951600000,0.76130], [1168038000000,0.76550], [1168124400000,0.76930], [1168210800000,0.76940], [1168297200000,0.76880], [1168383600000,0.76780], [1168470000000,0.77080], [1168556400000,0.77270], [1168642800000,0.77490], [1168729200000,0.77410], [1168815600000,0.77410], [1168902000000,0.77320], [1168988400000,0.77270], [1169074800000,0.77370], [1169161200000,0.77240], [1169247600000,0.77120], [1169334000000,0.7720], [1169420400000,0.77210], [1169506800000,0.77170], [1169593200000,0.77040], [1169679600000,0.7690], [1169766000000,0.77110], [1169852400000,0.7740], [1169938800000,0.77450], [1170025200000,0.77450], [1170111600000,0.7740], [1170198000000,0.77160], [1170284400000,0.77130], [1170370800000,0.76780], [1170457200000,0.76880], [1170543600000,0.77180], [1170630000000,0.77180], [1170716400000,0.77280], [1170802800000,0.77290], [1170889200000,0.76980], [1170975600000,0.76850], [1171062000000,0.76810], [1171148400000,0.7690], [1171234800000,0.7690], [1171321200000,0.76980], [1171407600000,0.76990], [1171494000000,0.76510], [1171580400000,0.76130], [1171666800000,0.76160], [1171753200000,0.76140], [1171839600000,0.76140], [1171926000000,0.76070], [1172012400000,0.76020], [1172098800000,0.76110], [1172185200000,0.76220], [1172271600000,0.76150], [1172358000000,0.75980], [1172444400000,0.75980], [1172530800000,0.75920], [1172617200000,0.75730], [1172703600000,0.75660], [1172790000000,0.75670], [1172876400000,0.75910], [1172962800000,0.75820], [1173049200000,0.75850], [1173135600000,0.76130], [1173222000000,0.76310], [1173308400000,0.76150], [1173394800000,0.760], [1173481200000,0.76130], [1173567600000,0.76270], [1173654000000,0.76270], [1173740400000,0.76080], [1173826800000,0.75830], [1173913200000,0.75750], [1173999600000,0.75620], [1174086000000,0.7520], [1174172400000,0.75120], [1174258800000,0.75120], [1174345200000,0.75170], [1174431600000,0.7520], [1174518000000,0.75110], [1174604400000,0.7480], [1174690800000,0.75090], [1174777200000,0.75310], [1174860000000,0.75310], [1174946400000,0.75270], [1175032800000,0.74980], [1175119200000,0.74930], [1175205600000,0.75040], [1175292000000,0.750], [1175378400000,0.74910], [1175464800000,0.74910], [1175551200000,0.74850], [1175637600000,0.74840], [1175724000000,0.74920], [1175810400000,0.74710], [1175896800000,0.74590], [1175983200000,0.74770], [1176069600000,0.74770], [1176156000000,0.74830], [1176242400000,0.74580], [1176328800000,0.74480], [1176415200000,0.7430], [1176501600000,0.73990], [1176588000000,0.73950], [1176674400000,0.73950], [1176760800000,0.73780], [1176847200000,0.73820], [1176933600000,0.73620], [1177020000000,0.73550], [1177106400000,0.73480], [1177192800000,0.73610], [1177279200000,0.73610], [1177365600000,0.73650], [1177452000000,0.73620], [1177538400000,0.73310], [1177624800000,0.73390], [1177711200000,0.73440], [1177797600000,0.73270], [1177884000000,0.73270], [1177970400000,0.73360], [1178056800000,0.73330], [1178143200000,0.73590], [1178229600000,0.73590], [1178316000000,0.73720], [1178402400000,0.7360], [1178488800000,0.7360], [1178575200000,0.7350], [1178661600000,0.73650], [1178748000000,0.73840], [1178834400000,0.73950], [1178920800000,0.74130], [1179007200000,0.73970], [1179093600000,0.73960], [1179180000000,0.73850], [1179266400000,0.73780], [1179352800000,0.73660], [1179439200000,0.740], [1179525600000,0.74110], [1179612000000,0.74060], [1179698400000,0.74050], [1179784800000,0.74140], [1179871200000,0.74310], [1179957600000,0.74310], [1180044000000,0.74380], [1180130400000,0.74430], [1180216800000,0.74430], [1180303200000,0.74430], [1180389600000,0.74340], [1180476000000,0.74290], [1180562400000,0.74420], [1180648800000,0.7440], [1180735200000,0.74390], [1180821600000,0.74370], [1180908000000,0.74370], [1180994400000,0.74290], [1181080800000,0.74030], [1181167200000,0.73990], [1181253600000,0.74180], [1181340000000,0.74680], [1181426400000,0.7480], [1181512800000,0.7480], [1181599200000,0.7490], [1181685600000,0.74940], [1181772000000,0.75220], [1181858400000,0.75150], [1181944800000,0.75020], [1182031200000,0.74720], [1182117600000,0.74720], [1182204000000,0.74620], [1182290400000,0.74550], [1182376800000,0.74490], [1182463200000,0.74670], [1182549600000,0.74580], [1182636000000,0.74270], [1182722400000,0.74270], [1182808800000,0.7430], [1182895200000,0.74290], [1182981600000,0.7440], [1183068000000,0.7430], [1183154400000,0.74220], [1183240800000,0.73880], [1183327200000,0.73880], [1183413600000,0.73690], [1183500000000,0.73450], [1183586400000,0.73450], [1183672800000,0.73450], [1183759200000,0.73520], [1183845600000,0.73410], [1183932000000,0.73410], [1184018400000,0.7340], [1184104800000,0.73240], [1184191200000,0.72720], [1184277600000,0.72640], [1184364000000,0.72550], [1184450400000,0.72580], [1184536800000,0.72580], [1184623200000,0.72560], [1184709600000,0.72570], [1184796000000,0.72470], [1184882400000,0.72430], [1184968800000,0.72440], [1185055200000,0.72350], [1185141600000,0.72350], [1185228000000,0.72350], [1185314400000,0.72350], [1185400800000,0.72620], [1185487200000,0.72880], [1185573600000,0.73010], [1185660000000,0.73370], [1185746400000,0.73370], [1185832800000,0.73240], [1185919200000,0.72970], [1186005600000,0.73170], [1186092000000,0.73150], [1186178400000,0.72880], [1186264800000,0.72630], [1186351200000,0.72630], [1186437600000,0.72420], [1186524000000,0.72530], [1186610400000,0.72640], [1186696800000,0.7270], [1186783200000,0.73120], [1186869600000,0.73050], [1186956000000,0.73050], [1187042400000,0.73180], [1187128800000,0.73580], [1187215200000,0.74090], [1187301600000,0.74540], [1187388000000,0.74370], [1187474400000,0.74240], [1187560800000,0.74240], [1187647200000,0.74150], [1187733600000,0.74190], [1187820000000,0.74140], [1187906400000,0.73770], [1187992800000,0.73550], [1188079200000,0.73150], [1188165600000,0.73150], [1188252000000,0.7320], [1188338400000,0.73320], [1188424800000,0.73460], [1188511200000,0.73280], [1188597600000,0.73230], [1188684000000,0.7340], [1188770400000,0.7340], [1188856800000,0.73360], [1188943200000,0.73510], [1189029600000,0.73460], [1189116000000,0.73210], [1189202400000,0.72940], [1189288800000,0.72660], [1189375200000,0.72660], [1189461600000,0.72540], [1189548000000,0.72420], [1189634400000,0.72130], [1189720800000,0.71970], [1189807200000,0.72090], [1189893600000,0.7210], [1189980000000,0.7210], [1190066400000,0.7210], [1190152800000,0.72090], [1190239200000,0.71590], [1190325600000,0.71330], [1190412000000,0.71050], [1190498400000,0.70990], [1190584800000,0.70990], [1190671200000,0.70930], [1190757600000,0.70930], [1190844000000,0.70760], [1190930400000,0.7070], [1191016800000,0.70490], [1191103200000,0.70120], [1191189600000,0.70110], [1191276000000,0.70190], [1191362400000,0.70460], [1191448800000,0.70630], [1191535200000,0.70890], [1191621600000,0.70770], [1191708000000,0.70770], [1191794400000,0.70770], [1191880800000,0.70910], [1191967200000,0.71180], [1192053600000,0.70790], [1192140000000,0.70530], [1192226400000,0.7050], [1192312800000,0.70550], [1192399200000,0.70550], [1192485600000,0.70450], [1192572000000,0.70510], [1192658400000,0.70510], [1192744800000,0.70170], [1192831200000,0.70], [1192917600000,0.69950], [1193004000000,0.69940], [1193090400000,0.70140], [1193176800000,0.70360], [1193263200000,0.70210], [1193349600000,0.70020], [1193436000000,0.69670], [1193522400000,0.6950], [1193612400000,0.6950], [1193698800000,0.69390], [1193785200000,0.6940], [1193871600000,0.69220], [1193958000000,0.69190], [1194044400000,0.69140], [1194130800000,0.68940], [1194217200000,0.68910], [1194303600000,0.69040], [1194390000000,0.6890], [1194476400000,0.68340], [1194562800000,0.68230], [1194649200000,0.68070], [1194735600000,0.68150], [1194822000000,0.68150], [1194908400000,0.68470], [1194994800000,0.68590], [1195081200000,0.68220], [1195167600000,0.68270], [1195254000000,0.68370], [1195340400000,0.68230], [1195426800000,0.68220], [1195513200000,0.68220], [1195599600000,0.67920], [1195686000000,0.67460], [1195772400000,0.67350], [1195858800000,0.67310], [1195945200000,0.67420], [1196031600000,0.67440], [1196118000000,0.67390], [1196204400000,0.67310], [1196290800000,0.67610], [1196377200000,0.67610], [1196463600000,0.67850], [1196550000000,0.68180], [1196636400000,0.68360], [1196722800000,0.68230], [1196809200000,0.68050], [1196895600000,0.67930], [1196982000000,0.68490], [1197068400000,0.68330], [1197154800000,0.68250], [1197241200000,0.68250], [1197327600000,0.68160], [1197414000000,0.67990], [1197500400000,0.68130], [1197586800000,0.68090], [1197673200000,0.68680], [1197759600000,0.69330], [1197846000000,0.69330], [1197932400000,0.69450], [1198018800000,0.69440], [1198105200000,0.69460], [1198191600000,0.69640], [1198278000000,0.69650], [1198364400000,0.69560], [1198450800000,0.69560], [1198537200000,0.6950], [1198623600000,0.69480], [1198710000000,0.69280], [1198796400000,0.68870], [1198882800000,0.68240], [1198969200000,0.67940], [1199055600000,0.67940], [1199142000000,0.68030], [1199228400000,0.68550], [1199314800000,0.68240], [1199401200000,0.67910], [1199487600000,0.67830], [1199574000000,0.67850], [1199660400000,0.67850], [1199746800000,0.67970], [1199833200000,0.680], [1199919600000,0.68030], [1200006000000,0.68050], [1200092400000,0.6760], [1200178800000,0.6770], [1200265200000,0.6770], [1200351600000,0.67360], [1200438000000,0.67260], [1200524400000,0.67640], [1200610800000,0.68210], [1200697200000,0.68310], [1200783600000,0.68420], [1200870000000,0.68420], [1200956400000,0.68870], [1201042800000,0.69030], [1201129200000,0.68480], [1201215600000,0.68240], [1201302000000,0.67880], [1201388400000,0.68140], [1201474800000,0.68140], [1201561200000,0.67970], [1201647600000,0.67690], [1201734000000,0.67650], [1201820400000,0.67330], [1201906800000,0.67290], [1201993200000,0.67580], [1202079600000,0.67580], [1202166000000,0.6750], [1202252400000,0.6780], [1202338800000,0.68330], [1202425200000,0.68560], [1202511600000,0.69030], [1202598000000,0.68960], [1202684400000,0.68960], [1202770800000,0.68820], [1202857200000,0.68790], [1202943600000,0.68620], [1203030000000,0.68520], [1203116400000,0.68230], [1203202800000,0.68130], [1203289200000,0.68130], [1203375600000,0.68220], [1203462000000,0.68020], [1203548400000,0.68020], [1203634800000,0.67840], [1203721200000,0.67480], [1203807600000,0.67470], [1203894000000,0.67470], [1203980400000,0.67480], [1204066800000,0.67330], [1204153200000,0.6650], [1204239600000,0.66110], [1204326000000,0.65830], [1204412400000,0.6590], [1204498800000,0.6590], [1204585200000,0.65810], [1204671600000,0.65780], [1204758000000,0.65740], [1204844400000,0.65320], [1204930800000,0.65020], [1205017200000,0.65140], [1205103600000,0.65140], [1205190000000,0.65070], [1205276400000,0.6510], [1205362800000,0.64890], [1205449200000,0.64240], [1205535600000,0.64060], [1205622000000,0.63820], [1205708400000,0.63820], [1205794800000,0.63410], [1205881200000,0.63440], [1205967600000,0.63780], [1206054000000,0.64390], [1206140400000,0.64780], [1206226800000,0.64810], [1206313200000,0.64810], [1206399600000,0.64940], [1206486000000,0.64380], [1206572400000,0.63770], [1206658800000,0.63290], [1206745200000,0.63360], [1206831600000,0.63330], [1206914400000,0.63330], [1207000800000,0.6330], [1207087200000,0.63710], [1207173600000,0.64030], [1207260000000,0.63960], [1207346400000,0.63640], [1207432800000,0.63560], [1207519200000,0.63560], [1207605600000,0.63680], [1207692000000,0.63570], [1207778400000,0.63540], [1207864800000,0.6320], [1207951200000,0.63320], [1208037600000,0.63280], [1208124000000,0.63310], [1208210400000,0.63420], [1208296800000,0.63210], [1208383200000,0.63020], [1208469600000,0.62780], [1208556000000,0.63080], [1208642400000,0.63240], [1208728800000,0.63240], [1208815200000,0.63070], [1208901600000,0.62770], [1208988000000,0.62690], [1209074400000,0.63350], [1209160800000,0.63920], [1209247200000,0.640], [1209333600000,0.64010], [1209420000000,0.63960], [1209506400000,0.64070], [1209592800000,0.64230], [1209679200000,0.64290], [1209765600000,0.64720], [1209852000000,0.64850], [1209938400000,0.64860], [1210024800000,0.64670], [1210111200000,0.64440], [1210197600000,0.64670], [1210284000000,0.65090], [1210370400000,0.64780], [1210456800000,0.64610], [1210543200000,0.64610], [1210629600000,0.64680], [1210716000000,0.64490], [1210802400000,0.6470], [1210888800000,0.64610], [1210975200000,0.64520], [1211061600000,0.64220], [1211148000000,0.64220], [1211234400000,0.64250], [1211320800000,0.64140], [1211407200000,0.63660], [1211493600000,0.63460], [1211580000000,0.6350], [1211666400000,0.63460], [1211752800000,0.63460], [1211839200000,0.63430], [1211925600000,0.63460], [1212012000000,0.63790], [1212098400000,0.64160], [1212184800000,0.64420], [1212271200000,0.64310], [1212357600000,0.64310], [1212444000000,0.64350], [1212530400000,0.6440], [1212616800000,0.64730], [1212703200000,0.64690], [1212789600000,0.63860], [1212876000000,0.63560], [1212962400000,0.6340], [1213048800000,0.63460], [1213135200000,0.6430], [1213221600000,0.64520], [1213308000000,0.64670], [1213394400000,0.65060], [1213480800000,0.65040], [1213567200000,0.65030], [1213653600000,0.64810], [1213740000000,0.64510], [1213826400000,0.6450], [1213912800000,0.64410], [1213999200000,0.64140], [1214085600000,0.64090], [1214172000000,0.64090], [1214258400000,0.64280], [1214344800000,0.64310], [1214431200000,0.64180], [1214517600000,0.63710], [1214604000000,0.63490], [1214690400000,0.63330], [1214776800000,0.63340], [1214863200000,0.63380], [1214949600000,0.63420], [1215036000000,0.6320], [1215122400000,0.63180], [1215208800000,0.6370], [1215295200000,0.63680], [1215381600000,0.63680], [1215468000000,0.63830], [1215554400000,0.63710], [1215640800000,0.63710], [1215727200000,0.63550], [1215813600000,0.6320], [1215900000000,0.62770], [1215986400000,0.62760], [1216072800000,0.62910], [1216159200000,0.62740], [1216245600000,0.62930], [1216332000000,0.63110], [1216418400000,0.6310], [1216504800000,0.63120], [1216591200000,0.63120], [1216677600000,0.63040], [1216764000000,0.62940], [1216850400000,0.63480], [1216936800000,0.63780], [1217023200000,0.63680], [1217109600000,0.63680], [1217196000000,0.63680], [1217282400000,0.6360], [1217368800000,0.6370], [1217455200000,0.64180], [1217541600000,0.64110], [1217628000000,0.64350], [1217714400000,0.64270], [1217800800000,0.64270], [1217887200000,0.64190], [1217973600000,0.64460], [1218060000000,0.64680], [1218146400000,0.64870], [1218232800000,0.65940], [1218319200000,0.66660], [1218405600000,0.66660], [1218492000000,0.66780], [1218578400000,0.67120], [1218664800000,0.67050], [1218751200000,0.67180], [1218837600000,0.67840], [1218924000000,0.68110], [1219010400000,0.68110], [1219096800000,0.67940], [1219183200000,0.68040], [1219269600000,0.67810], [1219356000000,0.67560], [1219442400000,0.67350], [1219528800000,0.67630], [1219615200000,0.67620], [1219701600000,0.67770], [1219788000000,0.68150], [1219874400000,0.68020], [1219960800000,0.6780], [1220047200000,0.67960], [1220133600000,0.68170], [1220220000000,0.68170], [1220306400000,0.68320], [1220392800000,0.68770], [1220479200000,0.69120], [1220565600000,0.69140], [1220652000000,0.70090], [1220738400000,0.70120], [1220824800000,0.7010], [1220911200000,0.70050]]; - - function euroFormatter(v, axis) { - return v.toFixed(axis.tickDecimals) +"€"; - } - - function doPlot(position) { - $.plot($("#placeholder"), - [ { data: oilprices, label: "Oil price ($)" }, - { data: exchangerates, label: "USD/EUR exchange rate", yaxis: 2 }], - { - xaxes: [ { mode: 'time' } ], - yaxes: [ { min: 0 }, - { - // align if we are to the right - alignTicksWithAxis: position == "right" ? 1 : null, - position: position, - tickFormatter: euroFormatter - } ], - legend: { position: 'sw' } - }); - } - - doPlot("right"); - - $("button").click(function () { - doPlot($(this).text()); - }); -}); -</script> - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/navigate.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/navigate.html deleted file mode 100644 index c916ef2..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/navigate.html +++ /dev/null @@ -1,118 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.navigate.js"></script> - <style type="text/css"> - #placeholder .button { - position: absolute; - cursor: pointer; - } - #placeholder div.button { - font-size: smaller; - color: #999; - background-color: #eee; - padding: 2px; - } - .message { - padding-left: 50px; - font-size: smaller; - } - </style> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:600px;height:300px;"></div> - - <p class="message"></p> - - <p>With the navigate plugin it is easy to add panning and zooming. - Drag to pan, double click to zoom (or use the mouse scrollwheel).</p> - - <p>The plugin fires events (useful for synchronizing several - plots) and adds a couple of public methods so you can easily build - a little user interface around it, like the little buttons at the - top right in the plot.</p> - - -<script type="text/javascript"> -$(function () { - // generate data set from a parametric function with a fractal - // look - function sumf(f, t, m) { - var res = 0; - for (var i = 1; i < m; ++i) - res += f(i * i * t) / (i * i); - return res; - } - - var d1 = []; - for (var t = 0; t <= 2 * Math.PI; t += 0.01) - d1.push([sumf(Math.cos, t, 10), sumf(Math.sin, t, 10)]); - var data = [ d1 ]; - - - var placeholder = $("#placeholder"); - var options = { - series: { lines: { show: true }, shadowSize: 0 }, - xaxis: { zoomRange: [0.1, 10], panRange: [-10, 10] }, - yaxis: { zoomRange: [0.1, 10], panRange: [-10, 10] }, - zoom: { - interactive: true - }, - pan: { - interactive: true - } - }; - - var plot = $.plot(placeholder, data, options); - - // show pan/zoom messages to illustrate events - placeholder.bind('plotpan', function (event, plot) { - var axes = plot.getAxes(); - $(".message").html("Panning to x: " + axes.xaxis.min.toFixed(2) - + " – " + axes.xaxis.max.toFixed(2) - + " and y: " + axes.yaxis.min.toFixed(2) - + " – " + axes.yaxis.max.toFixed(2)); - }); - - placeholder.bind('plotzoom', function (event, plot) { - var axes = plot.getAxes(); - $(".message").html("Zooming to x: " + axes.xaxis.min.toFixed(2) - + " – " + axes.xaxis.max.toFixed(2) - + " and y: " + axes.yaxis.min.toFixed(2) - + " – " + axes.yaxis.max.toFixed(2)); - }); - - // add zoom out button - $('<div class="button" style="right:20px;top:20px">zoom out</div>').appendTo(placeholder).click(function (e) { - e.preventDefault(); - plot.zoomOut(); - }); - - // and add panning buttons - - // little helper for taking the repetitive work out of placing - // panning arrows - function addArrow(dir, right, top, offset) { - $('<img class="button" src="arrow-' + dir + '.gif" style="right:' + right + 'px;top:' + top + 'px">').appendTo(placeholder).click(function (e) { - e.preventDefault(); - plot.pan(offset); - }); - } - - addArrow('left', 55, 60, { left: -100 }); - addArrow('right', 25, 60, { left: 100 }); - addArrow('up', 40, 45, { top: -100 }); - addArrow('down', 40, 75, { top: 100 }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/percentiles.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/percentiles.html deleted file mode 100644 index 9f2ba3a..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/percentiles.html +++ /dev/null @@ -1,57 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.fillbetween.js"></script> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:600px;height:400px;"></div> - - <p>Height in centimeters of individuals from the US (2003-2006) as function of - age in years (source: <a href="http://www.cdc.gov/nchs/data/nhsr/nhsr010.pdf">CDC</a>). - The 15%-85%, 25%-75% and 50% percentiles are indicated.</p> - - <p>For each point of a filled curve, you can specify an arbitrary - bottom. As this example illustrates, this can be useful for - plotting percentiles. If you have the data sets available without - appropriate fill bottoms, you can use the fillbetween plugin to - compute the data point bottoms automatically.</p> - -<script type="text/javascript"> -$(function () { - var males = {'15%': [[2, 88.0], [3, 93.3], [4, 102.0], [5, 108.5], [6, 115.7], [7, 115.6], [8, 124.6], [9, 130.3], [10, 134.3], [11, 141.4], [12, 146.5], [13, 151.7], [14, 159.9], [15, 165.4], [16, 167.8], [17, 168.7], [18, 169.5], [19, 168.0]], '90%': [[2, 96.8], [3, 105.2], [4, 113.9], [5, 120.8], [6, 127.0], [7, 133.1], [8, 139.1], [9, 143.9], [10, 151.3], [11, 161.1], [12, 164.8], [13, 173.5], [14, 179.0], [15, 182.0], [16, 186.9], [17, 185.2], [18, 186.3], [19, 186.6]], '25%': [[2, 89.2], [3, 94.9], [4, 104.4], [5, 111.4], [6, 117.5], [7, 120.2], [8, 127.1], [9, 132.9], [10, 136.8], [11, 144.4], [12, 149.5], [13, 154.1], [14, 163.1], [15, 169.2], [16, 170.4], [17, 171.2], [18, 172.4], [19, 170.8]], '10%': [[2, 86.9], [3, 92.6], [4, 99.9], [5, 107.0], [6, 114.0], [7, 113.5], [8, 123.6], [9, 129.2], [10, 133.0], [11, 140.6], [12, 145.2], [13, 149.7], [14, 158.4], [15, 163.5], [16, 166.9], [17, 167.5], [18, 167.1], [19, 165.3]], 'mean': [[2, 91.9], [3, 98.5], [4, 107.1], [5, 114.4], [6, 120.6], [7, 124.7], [8, 131.1], [9, 136.8], [10, 142.3], [11, 150.0], [12, 154.7], [13, 161.9], [14, 168.7], [15, 173.6], [16, 175.9], [17, 176.6], [18, 176.8], [19, 176.7]], '75%': [[2, 94.5], [3, 102.1], [4, 110.8], [5, 117.9], [6, 124.0], [7, 129.3], [8, 134.6], [9, 141.4], [10, 147.0], [11, 156.1], [12, 160.3], [13, 168.3], [14, 174.7], [15, 178.0], [16, 180.2], [17, 181.7], [18, 181.3], [19, 182.5]], '85%': [[2, 96.2], [3, 103.8], [4, 111.8], [5, 119.6], [6, 125.6], [7, 131.5], [8, 138.0], [9, 143.3], [10, 149.3], [11, 159.8], [12, 162.5], [13, 171.3], [14, 177.5], [15, 180.2], [16, 183.8], [17, 183.4], [18, 183.5], [19, 185.5]], '50%': [[2, 91.9], [3, 98.2], [4, 106.8], [5, 114.6], [6, 120.8], [7, 125.2], [8, 130.3], [9, 137.1], [10, 141.5], [11, 149.4], [12, 153.9], [13, 162.2], [14, 169.0], [15, 174.8], [16, 176.0], [17, 176.8], [18, 176.4], [19, 177.4]]}; - var females = {'15%': [[2, 84.8], [3, 93.7], [4, 100.6], [5, 105.8], [6, 113.3], [7, 119.3], [8, 124.3], [9, 131.4], [10, 136.9], [11, 143.8], [12, 149.4], [13, 151.2], [14, 152.3], [15, 155.9], [16, 154.7], [17, 157.0], [18, 156.1], [19, 155.4]], '90%': [[2, 95.6], [3, 104.1], [4, 111.9], [5, 119.6], [6, 127.6], [7, 133.1], [8, 138.7], [9, 147.1], [10, 152.8], [11, 161.3], [12, 166.6], [13, 167.9], [14, 169.3], [15, 170.1], [16, 172.4], [17, 169.2], [18, 171.1], [19, 172.4]], '25%': [[2, 87.2], [3, 95.9], [4, 101.9], [5, 107.4], [6, 114.8], [7, 121.4], [8, 126.8], [9, 133.4], [10, 138.6], [11, 146.2], [12, 152.0], [13, 153.8], [14, 155.7], [15, 158.4], [16, 157.0], [17, 158.5], [18, 158.4], [19, 158.1]], '10%': [[2, 84.0], [3, 91.9], [4, 99.2], [5, 105.2], [6, 112.7], [7, 118.0], [8, 123.3], [9, 130.2], [10, 135.0], [11, 141.1], [12, 148.3], [13, 150.0], [14, 150.7], [15, 154.3], [16, 153.6], [17, 155.6], [18, 154.7], [19, 153.1]], 'mean': [[2, 90.2], [3, 98.3], [4, 105.2], [5, 112.2], [6, 119.0], [7, 125.8], [8, 131.3], [9, 138.6], [10, 144.2], [11, 151.3], [12, 156.7], [13, 158.6], [14, 160.5], [15, 162.1], [16, 162.9], [17, 162.2], [18, 163.0], [19, 163.1]], '75%': [[2, 93.2], [3, 101.5], [4, 107.9], [5, 116.6], [6, 122.8], [7, 129.3], [8, 135.2], [9, 143.7], [10, 148.7], [11, 156.9], [12, 160.8], [13, 163.0], [14, 165.0], [15, 165.8], [16, 168.7], [17, 166.2], [18, 167.6], [19, 168.0]], '85%': [[2, 94.5], [3, 102.8], [4, 110.4], [5, 119.0], [6, 125.7], [7, 131.5], [8, 137.9], [9, 146.0], [10, 151.3], [11, 159.9], [12, 164.0], [13, 166.5], [14, 167.5], [15, 168.5], [16, 171.5], [17, 168.0], [18, 169.8], [19, 170.3]], '50%': [[2, 90.2], [3, 98.1], [4, 105.2], [5, 111.7], [6, 118.2], [7, 125.6], [8, 130.5], [9, 138.3], [10, 143.7], [11, 151.4], [12, 156.7], [13, 157.7], [14, 161.0], [15, 162.0], [16, 162.8], [17, 162.2], [18, 162.8], [19, 163.3]]}; - - var dataset = [ - { label: 'Female mean', data: females['mean'], lines: { show: true }, color: "rgb(255,50,50)" }, - { id: 'f15%', data: females['15%'], lines: { show: true, lineWidth: 0, fill: false }, color: "rgb(255,50,50)" }, - { id: 'f25%', data: females['25%'], lines: { show: true, lineWidth: 0, fill: 0.2 }, color: "rgb(255,50,50)", fillBetween: 'f15%' }, - { id: 'f50%', data: females['50%'], lines: { show: true, lineWidth: 0.5, fill: 0.4, shadowSize: 0 }, color: "rgb(255,50,50)", fillBetween: 'f25%' }, - { id: 'f75%', data: females['75%'], lines: { show: true, lineWidth: 0, fill: 0.4 }, color: "rgb(255,50,50)", fillBetween: 'f50%' }, - { id: 'f85%', data: females['85%'], lines: { show: true, lineWidth: 0, fill: 0.2 }, color: "rgb(255,50,50)", fillBetween: 'f75%' }, - - { label: 'Male mean', data: males['mean'], lines: { show: true }, color: "rgb(50,50,255)" }, - { id: 'm15%', data: males['15%'], lines: { show: true, lineWidth: 0, fill: false }, color: "rgb(50,50,255)" }, - { id: 'm25%', data: males['25%'], lines: { show: true, lineWidth: 0, fill: 0.2 }, color: "rgb(50,50,255)", fillBetween: 'm15%' }, - { id: 'm50%', data: males['50%'], lines: { show: true, lineWidth: 0.5, fill: 0.4, shadowSize: 0 }, color: "rgb(50,50,255)", fillBetween: 'm25%' }, - { id: 'm75%', data: males['75%'], lines: { show: true, lineWidth: 0, fill: 0.4 }, color: "rgb(50,50,255)", fillBetween: 'm50%' }, - { id: 'm85%', data: males['85%'], lines: { show: true, lineWidth: 0, fill: 0.2 }, color: "rgb(50,50,255)", fillBetween: 'm75%' } - ] - - $.plot($("#placeholder"), dataset, { - xaxis: { tickDecimals: 0 }, - yaxis: { tickFormatter: function (v) { return v + " cm"; } }, - legend: { position: 'se' } - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/pie.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/pie.html deleted file mode 100644 index 8f51411..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/pie.html +++ /dev/null @@ -1,756 +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 Pie Examples</title>
- <!--[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>
- <script language="javascript" type="text/javascript" src="../jquery.flot.pie.js"></script>
-
-<script type="text/javascript">
-$(function () {
- // data
- /*var data = [
- { label: "Series1", data: 10},
- { label: "Series2", data: 30},
- { label: "Series3", data: 90},
- { label: "Series4", data: 70},
- { label: "Series5", data: 80},
- { label: "Series6", data: 110}
- ];*/
- /*var data = [
- { label: "Series1", data: [[1,10]]},
- { label: "Series2", data: [[1,30]]},
- { label: "Series3", data: [[1,90]]},
- { label: "Series4", data: [[1,70]]},
- { label: "Series5", data: [[1,80]]},
- { label: "Series6", data: [[1,0]]}
- ];*/
- var data = [];
- var series = Math.floor(Math.random()*10)+1;
- for( var i = 0; i<series; i++)
- {
- data[i] = { label: "Series"+(i+1), data: Math.floor(Math.random()*100)+1 }
- }
-
- // DEFAULT
- $.plot($("#default"), data,
- {
- series: {
- pie: {
- show: true
- }
- }
- });
-
- // GRAPH 1
- $.plot($("#graph1"), data,
- {
- series: {
- pie: {
- show: true
- }
- },
- legend: {
- show: false
- }
- });
-
- // GRAPH 2
- $.plot($("#graph2"), data,
- {
- series: {
- pie: {
- show: true,
- radius: 1,
- label: {
- show: true,
- radius: 1,
- formatter: function(label, series){
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';
- },
- background: { opacity: 0.8 }
- }
- }
- },
- legend: {
- show: false
- }
- });
-
- // GRAPH 3
- $.plot($("#graph3"), data,
- {
- series: {
- pie: {
- show: true,
- radius: 1,
- label: {
- show: true,
- radius: 3/4,
- formatter: function(label, series){
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';
- },
- background: { opacity: 0.5 }
- }
- }
- },
- legend: {
- show: false
- }
- });
-
- // GRAPH 4
- $.plot($("#graph4"), data,
- {
- series: {
- pie: {
- show: true,
- radius: 1,
- label: {
- show: true,
- radius: 3/4,
- formatter: function(label, series){
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';
- },
- background: {
- opacity: 0.5,
- color: '#000'
- }
- }
- }
- },
- legend: {
- show: false
- }
- });
-
- // GRAPH 5
- $.plot($("#graph5"), data,
- {
- series: {
- pie: {
- show: true,
- radius: 3/4,
- label: {
- show: true,
- radius: 3/4,
- formatter: function(label, series){
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';
- },
- background: {
- opacity: 0.5,
- color: '#000'
- }
- }
- }
- },
- legend: {
- show: false
- }
- });
-
- // GRAPH 6
- $.plot($("#graph6"), data,
- {
- series: {
- pie: {
- show: true,
- radius: 1,
- label: {
- show: true,
- radius: 2/3,
- formatter: function(label, series){
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';
- },
- threshold: 0.1
- }
- }
- },
- legend: {
- show: false
- }
- });
-
- // GRAPH 7
- $.plot($("#graph7"), data,
- {
- series: {
- pie: {
- show: true,
- combine: {
- color: '#999',
- threshold: 0.1
- }
- }
- },
- legend: {
- show: false
- }
- });
-
- // GRAPH 8
- $.plot($("#graph8"), data,
- {
- series: {
- pie: {
- show: true,
- radius:300,
- label: {
- show: true,
- formatter: function(label, series){
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';
- },
- threshold: 0.1
- }
- }
- },
- legend: {
- show: false
- }
- });
-
- // GRAPH 9
- $.plot($("#graph9"), data,
- {
- series: {
- pie: {
- show: true,
- radius: 1,
- tilt: 0.5,
- label: {
- show: true,
- radius: 1,
- formatter: function(label, series){
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';
- },
- background: { opacity: 0.8 }
- },
- combine: {
- color: '#999',
- threshold: 0.1
- }
- }
- },
- legend: {
- show: false
- }
- });
-
- // DONUT
- $.plot($("#donut"), data,
- {
- series: {
- pie: {
- innerRadius: 0.5,
- show: true
- }
- }
- });
-
- // INTERACTIVE
- $.plot($("#interactive"), data,
- {
- series: {
- pie: {
- show: true
- }
- },
- grid: {
- hoverable: true,
- clickable: true
- }
- });
- $("#interactive").bind("plothover", pieHover);
- $("#interactive").bind("plotclick", pieClick);
-
-});
-
-function pieHover(event, pos, obj)
-{
- if (!obj)
- return;
- percent = parseFloat(obj.series.percent).toFixed(2);
- $("#hover").html('<span style="font-weight: bold; color: '+obj.series.color+'">'+obj.series.label+' ('+percent+'%)</span>');
-}
-
-function pieClick(event, pos, obj)
-{
- if (!obj)
- return;
- percent = parseFloat(obj.series.percent).toFixed(2);
- alert(''+obj.series.label+': '+percent+'%');
-}
-</script>
- <style type="text/css">
- * {
- font-family: sans-serif;
- }
-
- body
- {
- padding: 0 1em 1em 1em;
- }
-
- div.graph
- {
- width: 400px;
- height: 300px;
- float: left;
- border: 1px dashed gainsboro;
- }
-
- label
- {
- display: block;
- margin-left: 400px;
- padding-left: 1em;
- }
-
- h2
- {
- padding-top: 1em;
- margin-bottom: 0;
- clear: both;
- color: #ccc;
- }
-
- code
- {
- display: block;
- background-color: #eee;
- border: 1px dashed #999;
- padding: 0.5em;
- margin: 0.5em;
- color: #666;
- font-size: 10pt;
- }
-
- code b
- {
- color: black;
- }
-
- ul
- {
- font-size: 10pt;
- }
-
- ul li
- {
- margin-bottom: 0.5em;
- }
-
- ul.options li
- {
- list-style: none;
- margin-bottom: 1em;
- }
-
- ul li i
- {
- color: #999;
- }
- </style>
- </head>
- <body>
- <h1>Flot Pie Examples</h1>
-
- <h2>Default with Legend</h2>
- <div id="default" class="graph"></div>
- <label for="default">
- Default pie graph with no options set.
- <code>
-$.plot($("#default"), data,<br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true<br/>
- }<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Default without Legend</h2>
- <div id="graph1" class="graph"></div>
- <label for="graph1">
- Default pie graph when legend is disabled. Since the labels would normally be outside the container, the graph is resized to fit.
- <code>
-$.plot($("#graph1"), data, <br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true<br/>
- }<br/>
- },<br/>
- <b>legend: {<br/>
- show: false<br/>
- }</b><br/>
-});<br/>
- </code>
- </label>
-
- <h2>Graph2</h2>
- <div id="graph2" class="graph"></div>
- <label for="graph2">
- Added a semi-transparent background to the labels and a custom labelFormatter function.
- <code>
-$.plot($("#graph2"), data, <br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true,<br/>
- radius: 1,<br/>
- <b>label: {<br/>
- show: true,<br/>
- radius: 1,<br/>
- formatter: function(label, series){<br/>
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';<br/>
- },<br/>
- background: { opacity: 0.8 }<br/>
- }</b><br/>
- }<br/>
- },<br/>
- legend: {<br/>
- show: false<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Graph3</h2>
- <div id="graph3" class="graph"></div>
- <label for="graph3">
- Slightly more transparent label backgrounds and adjusted the radius values to place them within the pie.
- <code>
-$.plot($("#graph3"), data, <br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true,<br/>
- radius: 1,<br/>
- label: {<br/>
- show: true,<br/>
- <b>radius: 3/4,</b><br/>
- formatter: function(label, series){<br/>
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';<br/>
- },<br/>
- <b>background: { opacity: 0.5 }</b><br/>
- }<br/>
- }<br/>
- },<br/>
- legend: {<br/>
- show: false<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Graph4</h2>
- <div id="graph4" class="graph"></div>
- <label for="graph4">
- Semi-transparent, black-colored label background.
- <code>
-$.plot($("#graph4"), data, <br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true,<br/>
- radius: 1,<br/>
- label: {<br/>
- show: true,<br/>
- radius: 3/4,<br/>
- formatter: function(label, series){<br/>
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';<br/>
- },<br/>
- background: { <br/>
- opacity: 0.5,<br/>
- <b>color: '#000'</b><br/>
- }<br/>
- }<br/>
- },<br/>
- legend: {<br/>
- show: false<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Graph5</h2>
- <div id="graph5" class="graph"></div>
- <label for="graph5">
- Semi-transparent, black-colored label background placed at pie edge.
- <code>
-$.plot($("#graph5"), data, <br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true,<br/>
- <b>radius: 3/4,</b><br/>
- label: {<br/>
- show: true,<br/>
- radius: 3/4,<br/>
- formatter: function(label, series){<br/>
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';<br/>
- },<br/>
- background: { <br/>
- opacity: 0.5,<br/>
- color: '#000'<br/>
- }<br/>
- }<br/>
- },<br/>
- legend: {<br/>
- show: false<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Graph6</h2>
- <div id="graph6" class="graph"></div>
- <label for="graph6">
- Labels can be hidden if the slice is less than a given percentage of the pie (10% in this case).
- <br><span style="color: red">Note: you may need to refresh the page to see this effect.</span>
- <code>
-$.plot($("#graph6"), data, <br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true,<br/>
- <b>radius: 1,</b><br/>
- label: {<br/>
- show: true,<br/>
- <b>radius: 2/3,</b><br/>
- formatter: function(label, series){<br/>
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';<br/>
- },<br/>
- <b>threshold: 0.1</b><br/>
- }<br/>
- }<br/>
- },<br/>
- legend: {<br/>
- show: false<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Graph7</h2>
- <div id="graph7" class="graph"></div>
- <label for="graph7">
- All slices less than a given percentage of the pie can be combined into a single, larger slice (10% in this case).
- <br><span style="color: red">Note: you may need to refresh the page to see this effect.</span>
- <code>
-$.plot($("#graph7"), data, <br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true,<br/>
- <b>combine: {<br/>
- color: '#999',<br/>
- threshold: 0.1<br/>
- }</b><br/>
- }<br/>
- },<br/>
- legend: {<br/>
- show: false<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Graph8</h2>
- <div id="graph8" class="graph"></div>
- <label for="graph8">
- The radius can also be set to a specific size (even larger than the container itself).
- <code>
-$.plot($("#graph8"), data, <br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true,<br/>
- <b>radius:300,</b><br/>
- label: {<br/>
- show: true,<br/>
- formatter: function(label, series){<br/>
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';<br/>
- },<br/>
- threshold: 0.1<br/>
- }<br/>
- }<br/>
- },<br/>
- legend: {<br/>
- show: false<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Graph9</h2>
- <div id="graph9" class="graph" style="height: 250px;"></div>
- <label for="graph9">
- The pie can be tilted at an angle.
- <code>
-$.plot($("#graph9"), data, <br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true,<br/>
- radius: 1,<br/>
- <b>tilt: 0.5,</b><br/>
- label: {<br/>
- show: true,<br/>
- radius: 1,<br/>
- formatter: function(label, series){<br/>
- return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">'+label+'<br/>'+Math.round(series.percent)+'%</div>';<br/>
- },<br/>
- background: { opacity: 0.8 }<br/>
- },<br/>
- combine: {<br/>
- color: '#999',<br/>
- threshold: 0.1<br/>
- }<br/>
- }<br/>
- },<br/>
- legend: {<br/>
- show: false<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Donut</h2>
- <div id="donut" class="graph"></div>
- <label for="donut">
- A donut hole can be added.
- <code>
-$.plot($("#donut"), data,<br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- <b>innerRadius: 0.5,</b><br/>
- show: true<br/>
- }<br/>
- }<br/>
-});<br/>
- </code>
- </label>
-
- <h2>Interactive</h2>
- <div id="interactive" class="graph"></div>
- <label for="interactive">
- The pie can be made interactive with hover and click events.
- <code>
-$.plot($("#interactive"), data,<br/>
-{<br/>
- series: {<br/>
- pie: { <br/>
- show: true<br/>
- }<br/>
- },<br/>
- <b>grid: {<br/>
- hoverable: true,<br/>
- clickable: true<br/>
- }</b><br/>
-});<br/>
-<b>$("#interactive").bind("plothover", pieHover);<br/>
-$("#interactive").bind("plotclick", pieClick);</b><br/>
- </code>
- <div id="hover"></div>
- </label>
-
- <h2>Pie Options</h2>
- <ul class="options">
- <li style="border-bottom: 1px dotted #ccc;"><b>option:</b> <i>default value</i> - Description of option</li>
- <li><b>show:</b> <i>false</i> - Enable the plugin and draw as a pie.</li>
- <li><b>radius:</b> <i>'auto'</i> - Sets the radius of the pie. If value is between 0 and 1 (inclusive) then it will use that as a percentage of the available space (size of the container), otherwise it will use the value as a direct pixel length. If set to 'auto', it will be set to 1 if the legend is enabled and 3/4 if not.</li>
- <li><b>innerRadius:</b> <i>0</i> - Sets the radius of the donut hole. If value is between 0 and 1 (inclusive) then it will use that as a percentage of the radius, otherwise it will use the value as a direct pixel length.</li>
- <li><b>startAngle:</b> <i>3/2</i> - Factor of PI used for the starting angle (in radians) It can range between 0 and 2 (where 0 and 2 have the same result).</li>
- <li><b>tilt:</b> <i>1</i> - Percentage of tilt ranging from 0 and 1, where 1 has no change (fully vertical) and 0 is completely flat (fully horizontal -- in which case nothing actually gets drawn).</li>
- <li><b>offset:</b> <ul>
- <li><b>top:</b> <i>0</i> - Pixel distance to move the pie up and down (relative to the center).</li>
- <li><b>left:</b> <i>'auto'</i> - Pixel distance to move the pie left and right (relative to the center).</li>
- </ul>
- <li><b>stroke:</b> <ul>
- <li><b>color:</b> <i>'#FFF'</i> - Color of the border of each slice. Hexadecimal color definitions are prefered (other formats may or may not work).</li>
- <li><b>width:</b> <i>1</i> - Pixel width of the border of each slice.</li>
- </ul>
- <li><b>label:</b> <ul>
- <li><b>show:</b> <i>'auto'</i> - Enable/Disable the labels. This can be set to true, false, or 'auto'. When set to 'auto', it will be set to false if the legend is enabled and true if not.</li>
- <li><b>radius:</b> <i>1</i> - Sets the radius at which to place the labels. If value is between 0 and 1 (inclusive) then it will use that as a percentage of the available space (size of the container), otherwise it will use the value as a direct pixel length.</li>
- <li><b>threshold:</b> <i>0</i> - Hides the labels of any pie slice that is smaller than the specified percentage (ranging from 0 to 1) i.e. a value of '0.03' will hide all slices 3% or less of the total.</li>
- <li><b>formatter:</b> <i>[function]</i> - This function specifies how the positioned labels should be formatted, and is applied after the legend's labelFormatter function. The labels can also still be styled using the class "pieLabel" (i.e. ".pieLabel" or "#graph1 .pieLabel").</li>
- <li><b>radius:</b> <i>1</i> - Sets the radius at which to place the labels. If value is between 0 and 1 (inclusive) then it will use that as a percentage of the available space (size of the container), otherwise it will use the value as a direct pixel length.</li>
- <li><b>background:</b> <ul>
- <li><b>color:</b> <i>null</i> - Backgound color of the positioned labels. If null, the plugin will automatically use the color of the slice.</li>
- <li><b>opacity:</b> <i>0</i> - Opacity of the background for the positioned labels. Acceptable values range from 0 to 1, where 0 is completely transparent and 1 is completely opaque.</li>
- </ul>
- </ul>
- <li><b>combine:</b> <ul>
- <li><b>threshold:</b> <i>0</i> - Combines all slices that are smaller than the specified percentage (ranging from 0 to 1) i.e. a value of '0.03' will combine all slices 3% or less into one slice).</li>
- <li><b>color:</b> <i>null</i> - Backgound color of the positioned labels. If null, the plugin will automatically use the color of the first slice to be combined.</li>
- <li><b>label:</b> <i>'Other'</i> - Label text for the combined slice.</li>
- </ul>
- <li><b>highlight:</b> <ul>
- <li><b>opacity:</b> <i>0.5</i> - Opacity of the highlight overlay on top of the current pie slice. Currently this just uses a white overlay, but support for changing the color of the overlay will also be added at a later date.
- </ul>
- </ul>
-
- <h2>Changes/Features</h2>
- <ul>
- <li style="list-style: none;"><i>v1.0 - November 20th, 2009 - Brian Medendorp</i></li>
- <li>The pie plug-in is now part of the Flot repository! This should make it a lot easier to deal with.</li>
- <li>Added a new option (innerRadius) to add a "donut hole" to the center of the pie, based on comtributions from Anthony Aragues. I was a little reluctant to add this feature because it doesn't work very well with the shadow created for the tilted pie, but figured it was worthwhile for non-tilted pies. Also, excanvas apparently doesn't support compositing, so it will fall back to using the stroke color to fill in the center (but I recommend setting the stroke color to the background color anyway).</li>
- <li>Changed the lineJoin for the border of the pie slices to use the 'round' option. This should make the center of the pie look better, particularly when there are numerous thin slices.</li>
- <li>Included a bug fix submitted by btburnett3 to display a slightly smaller slice in the event that the slice is 100% and being rendered with Internet Explorer. I haven't experienced this bug myself, but it doesn't seem to hurt anything so I've included it.</li>
- <li>The tilt value is now used when calculating the maximum radius of the pie in relation to the height of the container. This should prevent the pie from being smaller than it needed to in some cases, as well as reducing the amount of extra white space generated above and below the pie.</li>
- <li><b>Hover and Click functionality are now availabe!</b><ul>
- <li>Thanks to btburnett3 for the original hover functionality and Anthony Aragues for the modification that makes it compatable with excanvas, this was a huge help!</li>
- <li>Added a new option (highlight opacity) to modify the highlight created when mousing over a slice. Currently this just uses a white overlay, but an option to change the hightlight color will be added when the appropriate functionality becomes available.
- <li>I had a major setback that required me to practically rebuild the hover/click events from scratch one piece at a time (I discovered that it only worked with a single pie on a page at a time), but the end result ended up being virtually identical to the original, so I'm not quite sure what exactly made it work.</li>
- <li><span style="color: red;">Warning:</span> There are some minor issues with using this functionality in conjuction with some of the other more advanced features (tilt and donut). When using a donut hole, the inner portion still triggers the events even though that portion of the pie is no longer visible. When tilted, the interactive portions still use the original, untilted version of the pie when determining mouse position (this is because the isPointInPath function apparently doesn't work with transformations), however hover and click both work this way, so the appropriate slice is still highlighted when clicking, and it isn't as noticable of a problem.</li>
- </ul></li>
- <li>Included a bug fix submitted by Xavi Ivars to fix array issues when other javascript libraries are included in addition to jQuery</li>
- <br/>
- <li style="list-style: none;"><i>v0.4 - July 1st, 2009 - Brian Medendorp</i></li>
- <li>Each series will now be shown in the legend, even if it's value is zero. The series will not get a positioned label because it will overlap with the other labels present and often makes them unreadable.</li>
- <li>Data can now be passed in using the standard Flot method using an array of datapoints, the pie plugin will simply use the first y-value that it finds for each series in this case. The plugin uses this datastructure internally, but you can still use the old method of passing in a single numerical value for each series (the plugin will convert it as necessary). This should make it easier to transition from other types of graphs (such as a stacked bar graph) to a pie.</li>
- <li>The pie can now be tilted at an angle with a new "tilt" option. Acceptable values range from 0-1, where 1 has no change (fully vertical) and 0 is completely flat (fully horizontal -- in which case nothing actually gets drawn). If the plugin determines that it will fit within the canvas, a drop shadow will be drawn under the tilted pie (this also requires a tilt value of 0.8 or less).</li>
- <br/>
- <li style="list-style: none;"><i>v0.3.2 - June 25th, 2009 - Brian Medendorp</i></li>
- <li>Fixed a bug that was causing the pie to be shifted too far left or right when the legend is showing in some cases.</li>
- <br/>
- <li style="list-style: none;"><i>v0.3.1 - June 24th, 2009 - Brian Medendorp</i></li>
- <li>Fixed a bug that was causing nothing to be drawn and generating a javascript error if any of the data values were set to zero.</li>
- <br/>
- <li style="list-style: none;"><i>v0.3 - June 23rd, 2009 - Brian Medendorp</i></li>
- <li>The legend now works without any modifications! Because of changes made to flot and the plugin system (thanks Ole Laursen!) I was able to simplify a number of things and am now able to use the legend without the direct access hack that was required in the previous version.</li>
- <br/>
- <li style="list-style: none;"><i>v0.2 - June 22nd, 2009 - Brian Medendorp</i></li>
- <li>The legend now works but only if you make the necessary changes to jquery.flot.js. Because of this, I changed the default values for pie.radius and pie.label.show to new 'auto' settings that change the default behavior of the size and labels depending on whether the legend functionality is available or not.</li>
- <br/>
- <li style="list-style: none;"><i>v0.1 - June 18th, 2009 - Brian Medendorp</i></li>
- <li>Rewrote the entire pie code into a flot plugin (since that is now an option), so it should be much easier to use and the code is cleaned up a bit. However, the (standard flot) legend is no longer available because the only way to prevent the grid lines from being displayed also prevents the legend from being displayed. Hopefully this can be fixed at a later date.</li>
- <li>Restructured and combined some of the options. It should be much easier to deal with now.</li>
- <li>Added the ability to change the starting point of the pie (still defaults to the top).</li>
- <li>Modified the default options to show the labels to compensate for the lack of a legend.</li>
- <li>Modified this page to use a random dataset. <span style="color: red">Note: you may need to refresh the page to see the effects of some of the examples.</span></li>
- <br/>
- <li style="list-style: none;"><i>May 21st, 2009 - Brian Medendorp</i></li>
- <li>Merged original pie modifications by Sergey Nosenko into the latest SVN version <i>(as of May 15th, 2009)</i> so that it will work with ie8.</li>
- <li>Pie graph will now be centered in the canvas unless moved because of the legend or manually via the options. Additionally it prevents the pie from being moved beyond the edge of the canvas.</li>
- <li>Modified the code related to the labelFormatter option to apply flot's legend labelFormatter first. This is so that the labels will be consistent, but still provide extra formatting for the positioned labels (such as adding the percentage value).</li>
- <li>Positioned labels now have their backgrounds applied as a seperate element (much like the legend background) so that the opacity value can be set independently from the label itself (foreground). Additionally, the background color defaults to that of the matching slice.</li>
- <li>As long as the labelOffset and radiusLimit are not set to hard values, the pie will be shrunk if the labels will extend outside the edge of the canvas</li>
- <li>Added new options "radiusLimitFactor" and "radiusLimit" which limits how large the (visual) radius of the pie is in relation to the full radius (as calculated from the canvas dimensions) or a hard-pixel value (respectively). This allows for pushing the labels "outside" the pie.</li>
- <li>Added a new option "labelHidePercent" that does not show the positioned labels of slices smaller than the specified percentage. This is to help prevent a bunch of overlapping labels from small slices.</li>
- <li>Added a new option "sliceCombinePercent" that combines all slices smaller than the specified percentage into one larger slice. This is to help make the pie more attractive when there are a number of tiny slices. The options "sliceCombineColor" and "sliceCombineLabel" have also been added to change the color and name of the new slice if desired.</li>
- <li>Tested in Firefox (3.0.10, 3.5b4), Internet Explorer (6.0.2900, 7.0.5730, 8.0.6001), Chrome (1.0.154), Opera (9.64), and Safari (3.1.1, 4 beta 5528.16).
- </ul>
-
-
- </body>
-</html>
-
diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/realtime.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/realtime.html deleted file mode 100644 index 3b427e1..0000000 --- a/datastore-leveldb/wwwroot_ebus/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> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/resize.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/resize.html deleted file mode 100644 index d1e18c3..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/resize.html +++ /dev/null @@ -1,61 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.resize.js"></script> - <style type="text/css"> - html, body { - height: 100%; /* make the percentage height on placeholder work */ - } - .message { - padding-left: 50px; - font-size: smaller; - } - </style> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:80%;height:40%;"></div> - - <p class="message"></p> - - <p>Sometimes it makes more sense to just let the plot take up the - available space. In that case, we need to redraw the plot each - time the placeholder changes its size. If you include the resize - plugin, this is handled automatically.</p> - - <p>Try resizing the window.</p> - - -<script type="text/javascript"> -$(function () { - var d1 = []; - for (var i = 0; i < 14; i += 0.5) - d1.push([i, Math.sin(i)]); - - var d2 = [[0, 3], [4, 8], [8, 5], [9, 13]]; - var d3 = [[0, 12], [7, 12], null, [7, 2.5], [12, 2.5]]; - - var placeholder = $("#placeholder"); - - var plot = $.plot(placeholder, [d1, d2, d3]); - - // the plugin includes a jQuery plugin for adding resize events to - // any element, let's just add a callback so we can display the - // placeholder size - placeholder.resize(function () { - $(".message").text("Placeholder is now " - + $(this).width() + "x" + $(this).height() - + " pixels"); - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/selection.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/selection.html deleted file mode 100644 index 1646f5a..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/selection.html +++ /dev/null @@ -1,114 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.selection.js"></script> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:600px;height:300px"></div> - - <p>1000 kg. CO<sub>2</sub> emissions per year per capita for various countries (source: <a href="http://en.wikipedia.org/wiki/List_of_countries_by_carbon_dioxide_emissions_per_capita">Wikipedia</a>).</p> - - <p>Flot supports selections through the selection plugin. - You can enable rectangular selection - or one-dimensional selection if the user should only be able to - select on one axis. Try left-click and drag on the plot above - where selection on the x axis is enabled.</p> - - <p>You selected: <span id="selection"></span></p> - - <p>The plot command returns a plot object you can use to control - the selection. Click the buttons below.</p> - - <p><input id="clearSelection" type="button" value="Clear selection" /> - <input id="setSelection" type="button" value="Select year 1994" /></p> - - <p>Selections are really useful for zooming. Just replot the - chart with min and max values for the axes set to the values - in the "plotselected" event triggered. Enable the checkbox - below and select a region again.</p> - - <p><label><input id="zoom" type="checkbox" />Zoom to selection.</label></p> - -<script type="text/javascript"> -$(function () { - var data = [ - { - label: "United States", - data: [[1990, 18.9], [1991, 18.7], [1992, 18.4], [1993, 19.3], [1994, 19.5], [1995, 19.3], [1996, 19.4], [1997, 20.2], [1998, 19.8], [1999, 19.9], [2000, 20.4], [2001, 20.1], [2002, 20.0], [2003, 19.8], [2004, 20.4]] - }, - { - label: "Russia", - data: [[1992, 13.4], [1993, 12.2], [1994, 10.6], [1995, 10.2], [1996, 10.1], [1997, 9.7], [1998, 9.5], [1999, 9.7], [2000, 9.9], [2001, 9.9], [2002, 9.9], [2003, 10.3], [2004, 10.5]] - }, - { - label: "United Kingdom", - data: [[1990, 10.0], [1991, 11.3], [1992, 9.9], [1993, 9.6], [1994, 9.5], [1995, 9.5], [1996, 9.9], [1997, 9.3], [1998, 9.2], [1999, 9.2], [2000, 9.5], [2001, 9.6], [2002, 9.3], [2003, 9.4], [2004, 9.79]] - }, - { - label: "Germany", - data: [[1990, 12.4], [1991, 11.2], [1992, 10.8], [1993, 10.5], [1994, 10.4], [1995, 10.2], [1996, 10.5], [1997, 10.2], [1998, 10.1], [1999, 9.6], [2000, 9.7], [2001, 10.0], [2002, 9.7], [2003, 9.8], [2004, 9.79]] - }, - { - label: "Denmark", - data: [[1990, 9.7], [1991, 12.1], [1992, 10.3], [1993, 11.3], [1994, 11.7], [1995, 10.6], [1996, 12.8], [1997, 10.8], [1998, 10.3], [1999, 9.4], [2000, 8.7], [2001, 9.0], [2002, 8.9], [2003, 10.1], [2004, 9.80]] - }, - { - label: "Sweden", - data: [[1990, 5.8], [1991, 6.0], [1992, 5.9], [1993, 5.5], [1994, 5.7], [1995, 5.3], [1996, 6.1], [1997, 5.4], [1998, 5.4], [1999, 5.1], [2000, 5.2], [2001, 5.4], [2002, 6.2], [2003, 5.9], [2004, 5.89]] - }, - { - label: "Norway", - data: [[1990, 8.3], [1991, 8.3], [1992, 7.8], [1993, 8.3], [1994, 8.4], [1995, 5.9], [1996, 6.4], [1997, 6.7], [1998, 6.9], [1999, 7.6], [2000, 7.4], [2001, 8.1], [2002, 12.5], [2003, 9.9], [2004, 19.0]] - } - ]; - - var options = { - series: { - lines: { show: true }, - points: { show: true } - }, - legend: { noColumns: 2 }, - xaxis: { tickDecimals: 0 }, - yaxis: { min: 0 }, - selection: { mode: "x" } - }; - - var placeholder = $("#placeholder"); - - placeholder.bind("plotselected", function (event, ranges) { - $("#selection").text(ranges.xaxis.from.toFixed(1) + " to " + ranges.xaxis.to.toFixed(1)); - - var zoom = $("#zoom").attr("checked"); - if (zoom) - plot = $.plot(placeholder, data, - $.extend(true, {}, options, { - xaxis: { min: ranges.xaxis.from, max: ranges.xaxis.to } - })); - }); - - placeholder.bind("plotunselected", function (event) { - $("#selection").text(""); - }); - - var plot = $.plot(placeholder, data, options); - - $("#clearSelection").click(function () { - plot.clearSelection(); - }); - - $("#setSelection").click(function () { - plot.setSelection({ xaxis: { from: 1994, to: 1995 } }); - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/setting-options.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/setting-options.html deleted file mode 100644 index 8d1967e..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/setting-options.html +++ /dev/null @@ -1,61 +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>There are plenty of options you can set to control the precise - looks of your plot. You can control the ticks on the axes, the - legend, the graph type, etc. The idea is that Flot goes to great - lengths to provide sensible defaults so that you don't have to - customize much for a good result.</p> - -<script type="text/javascript"> -$(function () { - var d1 = []; - for (var i = 0; i < Math.PI * 2; i += 0.25) - d1.push([i, Math.sin(i)]); - - var d2 = []; - for (var i = 0; i < Math.PI * 2; i += 0.25) - d2.push([i, Math.cos(i)]); - - var d3 = []; - for (var i = 0; i < Math.PI * 2; i += 0.1) - d3.push([i, Math.tan(i)]); - - $.plot($("#placeholder"), [ - { label: "sin(x)", data: d1}, - { label: "cos(x)", data: d2}, - { label: "tan(x)", data: d3} - ], { - series: { - lines: { show: true }, - points: { show: true } - }, - xaxis: { - ticks: [0, [Math.PI/2, "\u03c0/2"], [Math.PI, "\u03c0"], [Math.PI * 3/2, "3\u03c0/2"], [Math.PI * 2, "2\u03c0"]] - }, - yaxis: { - ticks: 10, - min: -2, - max: 2 - }, - grid: { - backgroundColor: { colors: ["#fff", "#eee"] } - } - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/stacking.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/stacking.html deleted file mode 100644 index b7de391..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/stacking.html +++ /dev/null @@ -1,77 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.stack.js"></script> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:600px;height:300px;"></div> - - <p>With the stack plugin, you can have Flot stack the - series. This is useful if you wish to display both a total and the - constituents it is made of. The only requirement is that you provide - the input sorted on x.</p> - - <p class="stackControls"> - <input type="button" value="With stacking"> - <input type="button" value="Without stacking"> - </p> - - <p class="graphControls"> - <input type="button" value="Bars"> - <input type="button" value="Lines"> - <input type="button" value="Lines with steps"> - </p> - -<script id="source"> -$(function () { - var d1 = []; - for (var i = 0; i <= 10; i += 1) - d1.push([i, parseInt(Math.random() * 30)]); - - var d2 = []; - for (var i = 0; i <= 10; i += 1) - d2.push([i, parseInt(Math.random() * 30)]); - - var d3 = []; - for (var i = 0; i <= 10; i += 1) - d3.push([i, parseInt(Math.random() * 30)]); - - var stack = 0, bars = true, lines = false, steps = false; - - function plotWithOptions() { - $.plot($("#placeholder"), [ d1, d2, d3 ], { - series: { - stack: stack, - lines: { show: lines, fill: true, steps: steps }, - bars: { show: bars, barWidth: 0.6 } - } - }); - } - - plotWithOptions(); - - $(".stackControls input").click(function (e) { - e.preventDefault(); - stack = $(this).val() == "With stacking" ? true : null; - plotWithOptions(); - }); - $(".graphControls input").click(function (e) { - e.preventDefault(); - bars = $(this).val().indexOf("Bars") != -1; - lines = $(this).val().indexOf("Lines") != -1; - steps = $(this).val().indexOf("steps") != -1; - plotWithOptions(); - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/symbols.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/symbols.html deleted file mode 100644 index e71b1aa..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/symbols.html +++ /dev/null @@ -1,49 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.symbol.js"></script> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:600px;height:300px"></div> - - <p>Various point types. Circles are built-in. For other - point types, you can define a little callback function to draw the - symbol; some common ones are available in the symbol plugin.</p> - -<script type="text/javascript"> -$(function () { - function generate(offset, amplitude) { - var res = []; - var start = 0, end = 10; - for (var i = 0; i <= 50; ++i) { - var x = start + i / 50 * (end - start); - res.push([x, amplitude * Math.sin(x + offset)]); - } - return res; - } - - var data = [ - { data: generate(2, 1.8), points: { symbol: "circle" } }, - { data: generate(3, 1.5), points: { symbol: "square" } }, - { data: generate(4, 0.9), points: { symbol: "diamond" } }, - { data: generate(6, 1.4), points: { symbol: "triangle" } }, - { data: generate(7, 1.1), points: { symbol: "cross" } } - ]; - - $.plot($("#placeholder"), data, { - series: { points: { show: true, radius: 3 } }, - grid: { hoverable: true } - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/thresholding.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/thresholding.html deleted file mode 100644 index f10144a..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/thresholding.html +++ /dev/null @@ -1,54 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.threshold.js"></script> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:600px;height:300px;"></div> - - <p>With the threshold plugin, you can apply a specific color to - the part of a data series below a threshold. This is can be useful - for highlighting negative values, e.g. when displaying net results - or what's in stock.</p> - - <p class="controls"> - <input type="button" value="Threshold at 5"> - <input type="button" value="Threshold at 0"> - <input type="button" value="Threshold at -2.5"> - </p> - -<script type="text/javascript"> -$(function () { - var d1 = []; - for (var i = 0; i <= 60; i += 1) - d1.push([i, parseInt(Math.random() * 30 - 10)]); - - function plotWithOptions(t) { - $.plot($("#placeholder"), [ { - data: d1, - color: "rgb(30, 180, 20)", - threshold: { below: t, color: "rgb(200, 20, 30)" }, - lines: { steps: true } - } ]); - } - - plotWithOptions(0); - - $(".controls input").click(function (e) { - e.preventDefault(); - var t = parseFloat($(this).val().replace('Threshold at ', '')); - plotWithOptions(t); - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/time.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/time.html deleted file mode 100644 index da62347..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/time.html +++ /dev/null @@ -1,71 +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>Monthly mean atmospheric CO<sub>2</sub> in PPM at Mauna Loa, Hawaii (source: <a href="http://www.esrl.noaa.gov/gmd/ccgg/trends/">NOAA/ESRL</a>).</p> - - <p>If you tell Flot that an axis represents time, the data will - be interpreted as timestamps and the ticks adjusted and - formatted accordingly.</p> - - <p>Zoom to: <button id="whole">Whole period</button> - <button id="nineties">1990-2000</button> - <button id="ninetynine">1999</button></p> - - <p>The timestamps must be specified as Javascript timestamps, as - milliseconds since January 1, 1970 00:00. This is like Unix - timestamps, but in milliseconds instead of seconds (remember to - multiply with 1000!).</p> - - <p>As an extra caveat, the timestamps are interpreted according to - UTC to avoid having the graph shift with each visitor's local - time zone. So you might have to add your local time zone offset - to the timestamps or simply pretend that the data was produced - in UTC instead of your local time zone.</p> - -<script id="source"> -$(function () { - var d = [[-373597200000, 315.71], [-370918800000, 317.45], [-368326800000, 317.50], [-363056400000, 315.86], [-360378000000, 314.93], [-357699600000, 313.19], [-352429200000, 313.34], [-349837200000, 314.67], [-347158800000, 315.58], [-344480400000, 316.47], [-342061200000, 316.65], [-339382800000, 317.71], [-336790800000, 318.29], [-334112400000, 318.16], [-331520400000, 316.55], [-328842000000, 314.80], [-326163600000, 313.84], [-323571600000, 313.34], [-320893200000, 314.81], [-318301200000, 315.59], [-315622800000, 316.43], [-312944400000, 316.97], [-310438800000, 317.58], [-307760400000, 319.03], [-305168400000, 320.03], [-302490000000, 319.59], [-299898000000, 318.18], [-297219600000, 315.91], [-294541200000, 314.16], [-291949200000, 313.83], [-289270800000, 315.00], [-286678800000, 316.19], [-284000400000, 316.89], [-281322000000, 317.70], [-278902800000, 318.54], [-276224400000, 319.48], [-273632400000, 320.58], [-270954000000, 319.78], [-268362000000, 318.58], [-265683600000, 316.79], [-263005200000, 314.99], [-260413200000, 315.31], [-257734800000, 316.10], [-255142800000, 317.01], [-252464400000, 317.94], [-249786000000, 318.56], [-247366800000, 319.69], [-244688400000, 320.58], [-242096400000, 321.01], [-239418000000, 320.61], [-236826000000, 319.61], [-234147600000, 317.40], [-231469200000, 316.26], [-228877200000, 315.42], [-226198800000, 316.69], [-223606800000, 317.69], [-220928400000, 318.74], [-218250000000, 319.08], [-215830800000, 319.86], [-213152400000, 321.39], [-210560400000, 322.24], [-207882000000, 321.47], [-205290000000, 319.74], [-202611600000, 317.77], [-199933200000, 316.21], [-197341200000, 315.99], [-194662800000, 317.07], [-192070800000, 318.36], [-189392400000, 319.57], [-178938000000, 322.23], [-176259600000, 321.89], [-173667600000, 320.44], [-170989200000, 318.70], [-168310800000, 316.70], [-165718800000, 316.87], [-163040400000, 317.68], [-160448400000, 318.71], [-157770000000, 319.44], [-155091600000, 320.44], [-152672400000, 320.89], [-149994000000, 322.13], [-147402000000, 322.16], [-144723600000, 321.87], [-142131600000, 321.21], [-139453200000, 318.87], [-136774800000, 317.81], [-134182800000, 317.30], [-131504400000, 318.87], [-128912400000, 319.42], [-126234000000, 320.62], [-123555600000, 321.59], [-121136400000, 322.39], [-118458000000, 323.70], [-115866000000, 324.07], [-113187600000, 323.75], [-110595600000, 322.40], [-107917200000, 320.37], [-105238800000, 318.64], [-102646800000, 318.10], [-99968400000, 319.79], [-97376400000, 321.03], [-94698000000, 322.33], [-92019600000, 322.50], [-89600400000, 323.04], [-86922000000, 324.42], [-84330000000, 325.00], [-81651600000, 324.09], [-79059600000, 322.55], [-76381200000, 320.92], [-73702800000, 319.26], [-71110800000, 319.39], [-68432400000, 320.72], [-65840400000, 321.96], [-63162000000, 322.57], [-60483600000, 323.15], [-57978000000, 323.89], [-55299600000, 325.02], [-52707600000, 325.57], [-50029200000, 325.36], [-47437200000, 324.14], [-44758800000, 322.11], [-42080400000, 320.33], [-39488400000, 320.25], [-36810000000, 321.32], [-34218000000, 322.90], [-31539600000, 324.00], [-28861200000, 324.42], [-26442000000, 325.64], [-23763600000, 326.66], [-21171600000, 327.38], [-18493200000, 326.70], [-15901200000, 325.89], [-13222800000, 323.67], [-10544400000, 322.38], [-7952400000, 321.78], [-5274000000, 322.85], [-2682000000, 324.12], [-3600000, 325.06], [2674800000, 325.98], [5094000000, 326.93], [7772400000, 328.13], [10364400000, 328.07], [13042800000, 327.66], [15634800000, 326.35], [18313200000, 324.69], [20991600000, 323.10], [23583600000, 323.07], [26262000000, 324.01], [28854000000, 325.13], [31532400000, 326.17], [34210800000, 326.68], [36630000000, 327.18], [39308400000, 327.78], [41900400000, 328.92], [44578800000, 328.57], [47170800000, 327.37], [49849200000, 325.43], [52527600000, 323.36], [55119600000, 323.56], [57798000000, 324.80], [60390000000, 326.01], [63068400000, 326.77], [65746800000, 327.63], [68252400000, 327.75], [70930800000, 329.72], [73522800000, 330.07], [76201200000, 329.09], [78793200000, 328.05], [81471600000, 326.32], [84150000000, 324.84], [86742000000, 325.20], [89420400000, 326.50], [92012400000, 327.55], [94690800000, 328.54], [97369200000, 329.56], [99788400000, 330.30], [102466800000, 331.50], [105058800000, 332.48], [107737200000, 332.07], [110329200000, 330.87], [113007600000, 329.31], [115686000000, 327.51], [118278000000, 327.18], [120956400000, 328.16], [123548400000, 328.64], [126226800000, 329.35], [128905200000, 330.71], [131324400000, 331.48], [134002800000, 332.65], [136594800000, 333.16], [139273200000, 332.06], [141865200000, 330.99], [144543600000, 329.17], [147222000000, 327.41], [149814000000, 327.20], [152492400000, 328.33], [155084400000, 329.50], [157762800000, 330.68], [160441200000, 331.41], [162860400000, 331.85], [165538800000, 333.29], [168130800000, 333.91], [170809200000, 333.40], [173401200000, 331.78], [176079600000, 329.88], [178758000000, 328.57], [181350000000, 328.46], [184028400000, 329.26], [189298800000, 331.71], [191977200000, 332.76], [194482800000, 333.48], [197161200000, 334.78], [199753200000, 334.78], [202431600000, 334.17], [205023600000, 332.78], [207702000000, 330.64], [210380400000, 328.95], [212972400000, 328.77], [215650800000, 330.23], [218242800000, 331.69], [220921200000, 332.70], [223599600000, 333.24], [226018800000, 334.96], [228697200000, 336.04], [231289200000, 336.82], [233967600000, 336.13], [236559600000, 334.73], [239238000000, 332.52], [241916400000, 331.19], [244508400000, 331.19], [247186800000, 332.35], [249778800000, 333.47], [252457200000, 335.11], [255135600000, 335.26], [257554800000, 336.60], [260233200000, 337.77], [262825200000, 338.00], [265503600000, 337.99], [268095600000, 336.48], [270774000000, 334.37], [273452400000, 332.27], [276044400000, 332.41], [278722800000, 333.76], [281314800000, 334.83], [283993200000, 336.21], [286671600000, 336.64], [289090800000, 338.12], [291769200000, 339.02], [294361200000, 339.02], [297039600000, 339.20], [299631600000, 337.58], [302310000000, 335.55], [304988400000, 333.89], [307580400000, 334.14], [310258800000, 335.26], [312850800000, 336.71], [315529200000, 337.81], [318207600000, 338.29], [320713200000, 340.04], [323391600000, 340.86], [325980000000, 341.47], [328658400000, 341.26], [331250400000, 339.29], [333928800000, 337.60], [336607200000, 336.12], [339202800000, 336.08], [341881200000, 337.22], [344473200000, 338.34], [347151600000, 339.36], [349830000000, 340.51], [352249200000, 341.57], [354924000000, 342.56], [357516000000, 343.01], [360194400000, 342.47], [362786400000, 340.71], [365464800000, 338.52], [368143200000, 336.96], [370738800000, 337.13], [373417200000, 338.58], [376009200000, 339.89], [378687600000, 340.93], [381366000000, 341.69], [383785200000, 342.69], [389052000000, 344.30], [391730400000, 343.43], [394322400000, 341.88], [397000800000, 339.89], [399679200000, 337.95], [402274800000, 338.10], [404953200000, 339.27], [407545200000, 340.67], [410223600000, 341.42], [412902000000, 342.68], [415321200000, 343.46], [417996000000, 345.10], [420588000000, 345.76], [423266400000, 345.36], [425858400000, 343.91], [428536800000, 342.05], [431215200000, 340.00], [433810800000, 340.12], [436489200000, 341.33], [439081200000, 342.94], [441759600000, 343.87], [444438000000, 344.60], [446943600000, 345.20], [452210400000, 347.36], [454888800000, 346.74], [457480800000, 345.41], [460159200000, 343.01], [462837600000, 341.23], [465433200000, 341.52], [468111600000, 342.86], [470703600000, 344.41], [473382000000, 345.09], [476060400000, 345.89], [478479600000, 347.49], [481154400000, 348.00], [483746400000, 348.75], [486424800000, 348.19], [489016800000, 346.54], [491695200000, 344.63], [494373600000, 343.03], [496969200000, 342.92], [499647600000, 344.24], [502239600000, 345.62], [504918000000, 346.43], [507596400000, 346.94], [510015600000, 347.88], [512690400000, 349.57], [515282400000, 350.35], [517960800000, 349.72], [520552800000, 347.78], [523231200000, 345.86], [525909600000, 344.84], [528505200000, 344.32], [531183600000, 345.67], [533775600000, 346.88], [536454000000, 348.19], [539132400000, 348.55], [541551600000, 349.52], [544226400000, 351.12], [546818400000, 351.84], [549496800000, 351.49], [552088800000, 349.82], [554767200000, 347.63], [557445600000, 346.38], [560041200000, 346.49], [562719600000, 347.75], [565311600000, 349.03], [567990000000, 350.20], [570668400000, 351.61], [573174000000, 352.22], [575848800000, 353.53], [578440800000, 354.14], [581119200000, 353.62], [583711200000, 352.53], [586389600000, 350.41], [589068000000, 348.84], [591663600000, 348.94], [594342000000, 350.04], [596934000000, 351.29], [599612400000, 352.72], [602290800000, 353.10], [604710000000, 353.65], [607384800000, 355.43], [609976800000, 355.70], [612655200000, 355.11], [615247200000, 353.79], [617925600000, 351.42], [620604000000, 349.81], [623199600000, 350.11], [625878000000, 351.26], [628470000000, 352.63], [631148400000, 353.64], [633826800000, 354.72], [636246000000, 355.49], [638920800000, 356.09], [641512800000, 357.08], [644191200000, 356.11], [646783200000, 354.70], [649461600000, 352.68], [652140000000, 351.05], [654735600000, 351.36], [657414000000, 352.81], [660006000000, 354.22], [662684400000, 354.85], [665362800000, 355.66], [667782000000, 357.04], [670456800000, 358.40], [673048800000, 359.00], [675727200000, 357.99], [678319200000, 356.00], [680997600000, 353.78], [683676000000, 352.20], [686271600000, 352.22], [688950000000, 353.70], [691542000000, 354.98], [694220400000, 356.09], [696898800000, 356.85], [699404400000, 357.73], [702079200000, 358.91], [704671200000, 359.45], [707349600000, 359.19], [709941600000, 356.72], [712620000000, 354.79], [715298400000, 352.79], [717894000000, 353.20], [720572400000, 354.15], [723164400000, 355.39], [725842800000, 356.77], [728521200000, 357.17], [730940400000, 358.26], [733615200000, 359.16], [736207200000, 360.07], [738885600000, 359.41], [741477600000, 357.44], [744156000000, 355.30], [746834400000, 353.87], [749430000000, 354.04], [752108400000, 355.27], [754700400000, 356.70], [757378800000, 358.00], [760057200000, 358.81], [762476400000, 359.68], [765151200000, 361.13], [767743200000, 361.48], [770421600000, 360.60], [773013600000, 359.20], [775692000000, 357.23], [778370400000, 355.42], [780966000000, 355.89], [783644400000, 357.41], [786236400000, 358.74], [788914800000, 359.73], [791593200000, 360.61], [794012400000, 361.58], [796687200000, 363.05], [799279200000, 363.62], [801957600000, 363.03], [804549600000, 361.55], [807228000000, 358.94], [809906400000, 357.93], [812502000000, 357.80], [815180400000, 359.22], [817772400000, 360.44], [820450800000, 361.83], [823129200000, 362.95], [825634800000, 363.91], [828309600000, 364.28], [830901600000, 364.94], [833580000000, 364.70], [836172000000, 363.31], [838850400000, 361.15], [841528800000, 359.40], [844120800000, 359.34], [846802800000, 360.62], [849394800000, 361.96], [852073200000, 362.81], [854751600000, 363.87], [857170800000, 364.25], [859845600000, 366.02], [862437600000, 366.46], [865116000000, 365.32], [867708000000, 364.07], [870386400000, 361.95], [873064800000, 360.06], [875656800000, 360.49], [878338800000, 362.19], [880930800000, 364.12], [883609200000, 364.99], [886287600000, 365.82], [888706800000, 366.95], [891381600000, 368.42], [893973600000, 369.33], [896652000000, 368.78], [899244000000, 367.59], [901922400000, 365.84], [904600800000, 363.83], [907192800000, 364.18], [909874800000, 365.34], [912466800000, 366.93], [915145200000, 367.94], [917823600000, 368.82], [920242800000, 369.46], [922917600000, 370.77], [925509600000, 370.66], [928188000000, 370.10], [930780000000, 369.08], [933458400000, 366.66], [936136800000, 364.60], [938728800000, 365.17], [941410800000, 366.51], [944002800000, 367.89], [946681200000, 369.04], [949359600000, 369.35], [951865200000, 370.38], [954540000000, 371.63], [957132000000, 371.32], [959810400000, 371.53], [962402400000, 369.75], [965080800000, 368.23], [967759200000, 366.87], [970351200000, 366.94], [973033200000, 368.27], [975625200000, 369.64], [978303600000, 370.46], [980982000000, 371.44], [983401200000, 372.37], [986076000000, 373.33], [988668000000, 373.77], [991346400000, 373.09], [993938400000, 371.51], [996616800000, 369.55], [999295200000, 368.12], [1001887200000, 368.38], [1004569200000, 369.66], [1007161200000, 371.11], [1009839600000, 372.36], [1012518000000, 373.09], [1014937200000, 373.81], [1017612000000, 374.93], [1020204000000, 375.58], [1022882400000, 375.44], [1025474400000, 373.86], [1028152800000, 371.77], [1030831200000, 370.73], [1033423200000, 370.50], [1036105200000, 372.18], [1038697200000, 373.70], [1041375600000, 374.92], [1044054000000, 375.62], [1046473200000, 376.51], [1049148000000, 377.75], [1051740000000, 378.54], [1054418400000, 378.20], [1057010400000, 376.68], [1059688800000, 374.43], [1062367200000, 373.11], [1064959200000, 373.10], [1067641200000, 374.77], [1070233200000, 375.97], [1072911600000, 377.03], [1075590000000, 377.87], [1078095600000, 378.88], [1080770400000, 380.42], [1083362400000, 380.62], [1086040800000, 379.70], [1088632800000, 377.43], [1091311200000, 376.32], [1093989600000, 374.19], [1096581600000, 374.47], [1099263600000, 376.15], [1101855600000, 377.51], [1104534000000, 378.43], [1107212400000, 379.70], [1109631600000, 380.92], [1112306400000, 382.18], [1114898400000, 382.45], [1117576800000, 382.14], [1120168800000, 380.60], [1122847200000, 378.64], [1125525600000, 376.73], [1128117600000, 376.84], [1130799600000, 378.29], [1133391600000, 380.06], [1136070000000, 381.40], [1138748400000, 382.20], [1141167600000, 382.66], [1143842400000, 384.69], [1146434400000, 384.94], [1149112800000, 384.01], [1151704800000, 382.14], [1154383200000, 380.31], [1157061600000, 378.81], [1159653600000, 379.03], [1162335600000, 380.17], [1164927600000, 381.85], [1167606000000, 382.94], [1170284400000, 383.86], [1172703600000, 384.49], [1175378400000, 386.37], [1177970400000, 386.54], [1180648800000, 385.98], [1183240800000, 384.36], [1185919200000, 381.85], [1188597600000, 380.74], [1191189600000, 381.15], [1193871600000, 382.38], [1196463600000, 383.94], [1199142000000, 385.44]]; - - $.plot($("#placeholder"), [d], { xaxis: { mode: "time" } }); - - $("#whole").click(function () { - $.plot($("#placeholder"), [d], { xaxis: { mode: "time" } }); - }); - - $("#nineties").click(function () { - $.plot($("#placeholder"), [d], { - xaxis: { - mode: "time", - min: (new Date(1990, 1, 1)).getTime(), - max: (new Date(2000, 1, 1)).getTime() - } - }); - }); - - $("#ninetynine").click(function () { - $.plot($("#placeholder"), [d], { - xaxis: { - mode: "time", - minTickSize: [1, "month"], - min: (new Date(1999, 1, 1)).getTime(), - max: (new Date(2000, 1, 1)).getTime() - } - }); - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/tracking.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/tracking.html deleted file mode 100644 index c116159..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/tracking.html +++ /dev/null @@ -1,95 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.crosshair.js"></script> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:600px;height:300px"></div> - - <p>You can add crosshairs that'll track the mouse position, either - on both axes or as here on only one.</p> - - <p>If you combine it with listening on hover events, you can use - it to track the intersection on the curves by interpolating - the data points (look at the legend).</p> - - <p id="hoverdata"></p> - -<script type="text/javascript"> -var plot; -$(function () { - var sin = [], cos = []; - for (var i = 0; i < 14; i += 0.1) { - sin.push([i, Math.sin(i)]); - cos.push([i, Math.cos(i)]); - } - - plot = $.plot($("#placeholder"), - [ { data: sin, label: "sin(x) = -0.00"}, - { data: cos, label: "cos(x) = -0.00" } ], { - series: { - lines: { show: true } - }, - crosshair: { mode: "x" }, - grid: { hoverable: true, autoHighlight: false }, - yaxis: { min: -1.2, max: 1.2 } - }); - var legends = $("#placeholder .legendLabel"); - legends.each(function () { - // fix the widths so they don't jump around - $(this).css('width', $(this).width()); - }); - - var updateLegendTimeout = null; - var latestPosition = null; - - function updateLegend() { - updateLegendTimeout = null; - - var pos = latestPosition; - - var axes = plot.getAxes(); - if (pos.x < axes.xaxis.min || pos.x > axes.xaxis.max || - pos.y < axes.yaxis.min || pos.y > axes.yaxis.max) - return; - - var i, j, dataset = plot.getData(); - for (i = 0; i < dataset.length; ++i) { - var series = dataset[i]; - - // find the nearest points, x-wise - for (j = 0; j < series.data.length; ++j) - if (series.data[j][0] > pos.x) - break; - - // now interpolate - var y, p1 = series.data[j - 1], p2 = series.data[j]; - if (p1 == null) - y = p2[1]; - else if (p2 == null) - y = p1[1]; - else - y = p1[1] + (p2[1] - p1[1]) * (pos.x - p1[0]) / (p2[0] - p1[0]); - - legends.eq(i).text(series.label.replace(/=.*/, "= " + y.toFixed(2))); - } - } - - $("#placeholder").bind("plothover", function (event, pos, item) { - latestPosition = pos; - if (!updateLegendTimeout) - updateLegendTimeout = setTimeout(updateLegend, 50); - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/turning-series.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/turning-series.html deleted file mode 100644 index bc6fd9f..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/turning-series.html +++ /dev/null @@ -1,98 +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>Here is an example with real data: military budgets for - various countries in constant (2005) million US dollars (source: <a href="http://www.sipri.org/">SIPRI</a>).</p> - - <p>Since all data is available client-side, it's pretty easy to - make the plot interactive. Try turning countries on/off with the - checkboxes below.</p> - - <p id="choices">Show:</p> - -<script type="text/javascript"> -$(function () { - var datasets = { - "usa": { - label: "USA", - data: [[1988, 483994], [1989, 479060], [1990, 457648], [1991, 401949], [1992, 424705], [1993, 402375], [1994, 377867], [1995, 357382], [1996, 337946], [1997, 336185], [1998, 328611], [1999, 329421], [2000, 342172], [2001, 344932], [2002, 387303], [2003, 440813], [2004, 480451], [2005, 504638], [2006, 528692]] - }, - "russia": { - label: "Russia", - data: [[1988, 218000], [1989, 203000], [1990, 171000], [1992, 42500], [1993, 37600], [1994, 36600], [1995, 21700], [1996, 19200], [1997, 21300], [1998, 13600], [1999, 14000], [2000, 19100], [2001, 21300], [2002, 23600], [2003, 25100], [2004, 26100], [2005, 31100], [2006, 34700]] - }, - "uk": { - label: "UK", - data: [[1988, 62982], [1989, 62027], [1990, 60696], [1991, 62348], [1992, 58560], [1993, 56393], [1994, 54579], [1995, 50818], [1996, 50554], [1997, 48276], [1998, 47691], [1999, 47529], [2000, 47778], [2001, 48760], [2002, 50949], [2003, 57452], [2004, 60234], [2005, 60076], [2006, 59213]] - }, - "germany": { - label: "Germany", - data: [[1988, 55627], [1989, 55475], [1990, 58464], [1991, 55134], [1992, 52436], [1993, 47139], [1994, 43962], [1995, 43238], [1996, 42395], [1997, 40854], [1998, 40993], [1999, 41822], [2000, 41147], [2001, 40474], [2002, 40604], [2003, 40044], [2004, 38816], [2005, 38060], [2006, 36984]] - }, - "denmark": { - label: "Denmark", - data: [[1988, 3813], [1989, 3719], [1990, 3722], [1991, 3789], [1992, 3720], [1993, 3730], [1994, 3636], [1995, 3598], [1996, 3610], [1997, 3655], [1998, 3695], [1999, 3673], [2000, 3553], [2001, 3774], [2002, 3728], [2003, 3618], [2004, 3638], [2005, 3467], [2006, 3770]] - }, - "sweden": { - label: "Sweden", - data: [[1988, 6402], [1989, 6474], [1990, 6605], [1991, 6209], [1992, 6035], [1993, 6020], [1994, 6000], [1995, 6018], [1996, 3958], [1997, 5780], [1998, 5954], [1999, 6178], [2000, 6411], [2001, 5993], [2002, 5833], [2003, 5791], [2004, 5450], [2005, 5521], [2006, 5271]] - }, - "norway": { - label: "Norway", - data: [[1988, 4382], [1989, 4498], [1990, 4535], [1991, 4398], [1992, 4766], [1993, 4441], [1994, 4670], [1995, 4217], [1996, 4275], [1997, 4203], [1998, 4482], [1999, 4506], [2000, 4358], [2001, 4385], [2002, 5269], [2003, 5066], [2004, 5194], [2005, 4887], [2006, 4891]] - } - }; - - // hard-code color indices to prevent them from shifting as - // countries are turned on/off - var i = 0; - $.each(datasets, function(key, val) { - val.color = i; - ++i; - }); - - // insert checkboxes - var choiceContainer = $("#choices"); - $.each(datasets, function(key, val) { - choiceContainer.append('<br/><input type="checkbox" name="' + key + - '" checked="checked" id="id' + key + '">' + - '<label for="id' + key + '">' - + val.label + '</label>'); - }); - choiceContainer.find("input").click(plotAccordingToChoices); - - - function plotAccordingToChoices() { - var data = []; - - choiceContainer.find("input:checked").each(function () { - var key = $(this).attr("name"); - if (key && datasets[key]) - data.push(datasets[key]); - }); - - if (data.length > 0) - $.plot($("#placeholder"), data, { - yaxis: { min: 0 }, - xaxis: { tickDecimals: 0 } - }); - } - - plotAccordingToChoices(); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/visitors.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/visitors.html deleted file mode 100644 index 8a9d4d7..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/visitors.html +++ /dev/null @@ -1,90 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.selection.js"></script> - </head> - <body> - <h1>Flot Examples</h1> - - <div id="placeholder" style="width:600px;height:300px;"></div> - - <p>Visitors per day to the Flot homepage. Weekends are colored. Try zooming. - The plot below shows an overview.</p> - - <div id="overview" style="margin-left:50px;margin-top:20px;width:400px;height:50px"></div> - -<script id="source"> -$(function () { - var d = [[1196463600000, 0], [1196550000000, 0], [1196636400000, 0], [1196722800000, 77], [1196809200000, 3636], [1196895600000, 3575], [1196982000000, 2736], [1197068400000, 1086], [1197154800000, 676], [1197241200000, 1205], [1197327600000, 906], [1197414000000, 710], [1197500400000, 639], [1197586800000, 540], [1197673200000, 435], [1197759600000, 301], [1197846000000, 575], [1197932400000, 481], [1198018800000, 591], [1198105200000, 608], [1198191600000, 459], [1198278000000, 234], [1198364400000, 1352], [1198450800000, 686], [1198537200000, 279], [1198623600000, 449], [1198710000000, 468], [1198796400000, 392], [1198882800000, 282], [1198969200000, 208], [1199055600000, 229], [1199142000000, 177], [1199228400000, 374], [1199314800000, 436], [1199401200000, 404], [1199487600000, 253], [1199574000000, 218], [1199660400000, 476], [1199746800000, 462], [1199833200000, 448], [1199919600000, 442], [1200006000000, 403], [1200092400000, 204], [1200178800000, 194], [1200265200000, 327], [1200351600000, 374], [1200438000000, 507], [1200524400000, 546], [1200610800000, 482], [1200697200000, 283], [1200783600000, 221], [1200870000000, 483], [1200956400000, 523], [1201042800000, 528], [1201129200000, 483], [1201215600000, 452], [1201302000000, 270], [1201388400000, 222], [1201474800000, 439], [1201561200000, 559], [1201647600000, 521], [1201734000000, 477], [1201820400000, 442], [1201906800000, 252], [1201993200000, 236], [1202079600000, 525], [1202166000000, 477], [1202252400000, 386], [1202338800000, 409], [1202425200000, 408], [1202511600000, 237], [1202598000000, 193], [1202684400000, 357], [1202770800000, 414], [1202857200000, 393], [1202943600000, 353], [1203030000000, 364], [1203116400000, 215], [1203202800000, 214], [1203289200000, 356], [1203375600000, 399], [1203462000000, 334], [1203548400000, 348], [1203634800000, 243], [1203721200000, 126], [1203807600000, 157], [1203894000000, 288]]; - - // first correct the timestamps - they are recorded as the daily - // midnights in UTC+0100, but Flot always displays dates in UTC - // so we have to add one hour to hit the midnights in the plot - for (var i = 0; i < d.length; ++i) - d[i][0] += 60 * 60 * 1000; - - // helper for returning the weekends in a period - function weekendAreas(axes) { - var markings = []; - var d = new Date(axes.xaxis.min); - // go to the first Saturday - d.setUTCDate(d.getUTCDate() - ((d.getUTCDay() + 1) % 7)) - d.setUTCSeconds(0); - d.setUTCMinutes(0); - d.setUTCHours(0); - var i = d.getTime(); - do { - // when we don't set yaxis, the rectangle automatically - // extends to infinity upwards and downwards - markings.push({ xaxis: { from: i, to: i + 2 * 24 * 60 * 60 * 1000 } }); - i += 7 * 24 * 60 * 60 * 1000; - } while (i < axes.xaxis.max); - - return markings; - } - - var options = { - xaxis: { mode: "time", tickLength: 5 }, - selection: { mode: "x" }, - grid: { markings: weekendAreas } - }; - - var plot = $.plot($("#placeholder"), [d], options); - - var overview = $.plot($("#overview"), [d], { - series: { - lines: { show: true, lineWidth: 1 }, - shadowSize: 0 - }, - xaxis: { ticks: [], mode: "time" }, - yaxis: { ticks: [], min: 0, autoscaleMargin: 0.1 }, - selection: { mode: "x" } - }); - - // now connect the two - - $("#placeholder").bind("plotselected", function (event, ranges) { - // do the zooming - plot = $.plot($("#placeholder"), [d], - $.extend(true, {}, options, { - xaxis: { min: ranges.xaxis.from, max: ranges.xaxis.to } - })); - - // don't fire event on the overview to prevent eternal loop - overview.setSelection(ranges, true); - }); - - $("#overview").bind("plotselected", function (event, ranges) { - plot.setSelection(ranges); - }); -}); -</script> - - </body> -</html> diff --git a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/zooming.html b/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/zooming.html deleted file mode 100644 index 9a4ef22..0000000 --- a/datastore-leveldb/wwwroot_ebus/lib/flot-0.7/examples/zooming.html +++ /dev/null @@ -1,98 +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> - <script language="javascript" type="text/javascript" src="../jquery.flot.selection.js"></script> - </head> - <body> - <h1>Flot Examples</h1> - - <div style="float:left"> - <div id="placeholder" style="width:500px;height:300px"></div> - </div> - - <div id="miniature" style="float:left;margin-left:20px"> - <div id="overview" style="width:166px;height:100px"></div> - - <p id="overviewLegend" style="margin-left:10px"></p> - </div> - - <p style="clear:left">The selection support makes it easy to - construct flexible zooming schemes. With a few lines of code, the - small overview plot to the right has been connected to the large - plot. Try selecting a rectangle on either of them.</p> - -<script id="source"> -$(function () { - // setup plot - function getData(x1, x2) { - var d = []; - for (var i = 0; i <= 100; ++i) { - var x = x1 + i * (x2 - x1) / 100; - d.push([x, Math.sin(x * Math.sin(x))]); - } - - return [ - { label: "sin(x sin(x))", data: d } - ]; - } - - var options = { - legend: { show: false }, - series: { - lines: { show: true }, - points: { show: true } - }, - yaxis: { ticks: 10 }, - selection: { mode: "xy" } - }; - - var startData = getData(0, 3 * Math.PI); - - var plot = $.plot($("#placeholder"), startData, options); - - // setup overview - var overview = $.plot($("#overview"), startData, { - legend: { show: true, container: $("#overviewLegend") }, - series: { - lines: { show: true, lineWidth: 1 }, - shadowSize: 0 - }, - xaxis: { ticks: 4 }, - yaxis: { ticks: 3, min: -2, max: 2 }, - grid: { color: "#999" }, - selection: { mode: "xy" } - }); - - // now connect the two - - $("#placeholder").bind("plotselected", function (event, ranges) { - // clamp the zooming to prevent eternal zoom - if (ranges.xaxis.to - ranges.xaxis.from < 0.00001) - ranges.xaxis.to = ranges.xaxis.from + 0.00001; - if (ranges.yaxis.to - ranges.yaxis.from < 0.00001) - ranges.yaxis.to = ranges.yaxis.from + 0.00001; - - // do the zooming - plot = $.plot($("#placeholder"), getData(ranges.xaxis.from, ranges.xaxis.to), - $.extend(true, {}, options, { - xaxis: { min: ranges.xaxis.from, max: ranges.xaxis.to }, - yaxis: { min: ranges.yaxis.from, max: ranges.yaxis.to } - })); - - // don't fire event on the overview to prevent eternal loop - overview.setSelection(ranges, true); - }); - $("#overview").bind("plotselected", function (event, ranges) { - plot.setSelection(ranges); - }); -}); -</script> - - </body> -</html> |