diff options
author | Igor Sfiligoi <isfiligoi@ucsd.edu> | 2013-11-07 12:50:35 -0500 |
---|---|---|
committer | Igor Sfiligoi <isfiligoi@ucsd.edu> | 2013-11-07 12:50:35 -0500 |
commit | 680241cbb652ee29088baa6cde2da02002e5ec47 (patch) | |
tree | 3f0c17df67c0ab0e91542ae75fff175750581859 /examples/image.html | |
parent | f361d0498d284c6c7f3f366bf88e49b93e1245f0 (diff) |
Diffstat (limited to 'examples/image.html')
-rw-r--r-- | examples/image.html | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/examples/image.html b/examples/image.html deleted file mode 100644 index 073ad43..0000000 --- a/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> |