summaryrefslogtreecommitdiff
path: root/datastore-leveldb/wwwroot/lib/flot-0.7/examples/image.html
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2013-04-18 17:34:27 +0200
committerYves Fischer <yvesf-git@xapek.org>2013-04-18 17:34:27 +0200
commit87f4134201f0a0840415aab531e32ca714bc7a36 (patch)
treecf148ecc810f92ca2e4c177498a56130806ed4e4 /datastore-leveldb/wwwroot/lib/flot-0.7/examples/image.html
parent7c8e064216cc672557cbf3892ff090490505e408 (diff)
downloadebus-alt-87f4134201f0a0840415aab531e32ca714bc7a36.tar.gz
ebus-alt-87f4134201f0a0840415aab531e32ca714bc7a36.zip
leveldb geht so
Diffstat (limited to 'datastore-leveldb/wwwroot/lib/flot-0.7/examples/image.html')
-rw-r--r--datastore-leveldb/wwwroot/lib/flot-0.7/examples/image.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/datastore-leveldb/wwwroot/lib/flot-0.7/examples/image.html b/datastore-leveldb/wwwroot/lib/flot-0.7/examples/image.html
new file mode 100644
index 0000000..073ad43
--- /dev/null
+++ b/datastore-leveldb/wwwroot/lib/flot-0.7/examples/image.html
@@ -0,0 +1,45 @@
+<!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>