about summary refs log tree commit diff
path: root/wqflask/wqflask/static/packages/jqplot/examples/zoom1.html
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask/wqflask/static/packages/jqplot/examples/zoom1.html')
-rw-r--r--wqflask/wqflask/static/packages/jqplot/examples/zoom1.html149
1 files changed, 149 insertions, 0 deletions
diff --git a/wqflask/wqflask/static/packages/jqplot/examples/zoom1.html b/wqflask/wqflask/static/packages/jqplot/examples/zoom1.html
new file mode 100644
index 00000000..5808fb16
--- /dev/null
+++ b/wqflask/wqflask/static/packages/jqplot/examples/zoom1.html
@@ -0,0 +1,149 @@
+<!DOCTYPE html>
+
+<html>
+<head>
+	
+	<title>Zooming</title>
+
+    <link class="include" rel="stylesheet" type="text/css" href="../jquery.jqplot.min.css" />
+    <link rel="stylesheet" type="text/css" href="examples.min.css" />
+    <link type="text/css" rel="stylesheet" href="syntaxhighlighter/styles/shCoreDefault.min.css" />
+    <link type="text/css" rel="stylesheet" href="syntaxhighlighter/styles/shThemejqPlot.min.css" />
+  
+  <!--[if lt IE 9]><script language="javascript" type="text/javascript" src="../excanvas.js"></script><![endif]-->
+    <script class="include" type="text/javascript" src="../jquery.min.js"></script>
+    
+   
+</head>
+<body>
+    <div class="logo">
+   <div class="nav">
+   <a class="nav" href="../../../index.php"><span>&gt;</span>Home</a>
+   <a class="nav"  href="../../../docs/"><span>&gt;</span>Docs</a>
+   <a class="nav"  href="../../download/"><span>&gt;</span>Download</a>
+   <a class="nav" href="../../../info.php"><span>&gt;</span>Info</a>
+   <a class="nav"  href="../../../donate.php"><span>&gt;</span>Donate</a>
+   </div>
+</div>
+    <div class="example-content">
+
+    <div class="example-nav">
+  <a href="waterfall2.html">Previous</a> <a href="./">Examples</a> <a href="zoomOptions.html">Next</a></div>
+
+      
+<!-- Example scripts go here -->
+
+    <style type="text/css">
+        .jqplot-cursor-legend {
+            width: 160px;
+            font-family: "Courier New";
+            font-size: 0.85em;
+        }
+
+        td.jqplot-cursor-legend-swatch {
+            width: 1.3em;
+        }
+    </style>  
+
+
+
+    <div id="chart1" style="height:200px; width:600px;"></div>
+    <div id="chart2" style="height:500px; width:600px;"></div>
+
+
+<script type="text/javascript" class="code">
+$(document).ready(function(){
+    goog = [["6/22/2009",425.32], ["6/8/2009",424.84], ["5/26/2009",417.23], ["5/11/2009",390], 
+    ["4/27/2009",393.69], ["4/13/2009",392.24], ["3/30/2009",369.78], ["3/16/2009",330.16], ["3/2/2009",308.57], 
+    ["2/17/2009",346.45], ["2/2/2009",371.28], ["1/20/2009",324.7], ["1/5/2009",315.07], ["12/22/2008",300.36], 
+    ["12/8/2008",315.76], ["11/24/2008",292.96], ["11/10/2008",310.02], ["10/27/2008",359.36], ["10/13/2008",372.54],
+    ["9/29/2008",386.91], ["9/15/2008",449.15], ["9/2/2008",444.25], ["8/25/2008",463.29],  ["8/11/2008",510.15], 
+    ["7/28/2008",467.86], ["7/14/2008",481.32], ["6/30/2008",537], ["6/16/2008",546.43], ["6/2/2008",567], 
+    ["5/19/2008",544.62], ["5/5/2008",573.2], ["4/21/2008",544.06], ["4/7/2008",457.45], ["3/24/2008",438.08], 
+    ["3/10/2008",437.92], ["2/25/2008",471.18], ["2/11/2008",529.64], ["1/28/2008",515.9], ["1/14/2008",600.25], 
+    ["12/31/2007",657], ["12/17/2007",696.69], ["12/3/2007",714.87], ["11/19/2007",676.7], ["11/5/2007",663.97], 
+    ["10/22/2007",674.6], ["10/8/2007",637.39], ["9/24/2007",567.27], ["9/10/2007",528.75], ["8/27/2007",515.25]];
+
+    var plot1 = $.jqplot('chart1', [goog], { 
+        title: 'Google, Inc.', 
+        series: [{ 
+            label: 'Google, Inc.', 
+            neighborThreshold: -1 
+        }], 
+        axes: { 
+            xaxis: { 
+                renderer:$.jqplot.DateAxisRenderer,
+                tickRenderer: $.jqplot.CanvasAxisTickRenderer,
+                tickOptions: {
+                  angle: -30
+                } 
+            }, 
+            yaxis: {  
+                renderer: $.jqplot.LogAxisRenderer,
+                tickOptions:{ prefix: '$' } 
+            } 
+        }, 
+        cursor:{
+            show: true, 
+            zoom: true
+        } 
+    });
+});
+</script>
+
+<script type="text/javascript" class="code">
+$(document).ready(function(){    
+    plot2 = $.jqplot('chart2', [goog], { 
+        title: 'Google, Inc.', 
+        series: [{ 
+            label: 'Google, Inc.', 
+            neighborThreshold: -1 
+        }], 
+        axes: { 
+            xaxis: { 
+                renderer:$.jqplot.DateAxisRenderer,
+                tickRenderer: $.jqplot.CanvasAxisTickRenderer, 
+                tickOptions: {
+                  angle: -30
+                } 
+            }, 
+            yaxis: {  
+                renderer: $.jqplot.LogAxisRenderer,
+                tickOptions:{ prefix: '$' } 
+            } 
+        }, 
+        cursor:{
+            show: true, 
+            zoom: true
+        } 
+    });
+});
+</script>
+
+<!-- End example scripts -->
+
+<!-- Don't touch this! -->
+
+
+    <script class="include" type="text/javascript" src="../jquery.jqplot.min.js"></script>
+    <script type="text/javascript" src="syntaxhighlighter/scripts/shCore.min.js"></script>
+    <script type="text/javascript" src="syntaxhighlighter/scripts/shBrushJScript.min.js"></script>
+    <script type="text/javascript" src="syntaxhighlighter/scripts/shBrushXml.min.js"></script>
+<!-- End Don't touch this! -->
+
+<!-- Additional plugins go here -->
+    <script class="include" type="text/javascript" src="../plugins/jqplot.cursor.min.js"></script>
+    <script class="include" type="text/javascript" src="../plugins/jqplot.dateAxisRenderer.min.js"></script>
+    <script class="include" type="text/javascript" src="../plugins/jqplot.logAxisRenderer.min.js"></script>
+    <script class="include" type="text/javascript" src="../plugins/jqplot.canvasTextRenderer.min.js"></script>
+    <script class="include" type="text/javascript" src="../plugins/jqplot.canvasAxisTickRenderer.min.js"></script>
+<!-- End additional plugins -->
+
+
+	</div>	
+	<script type="text/javascript" src="example.min.js"></script>
+
+</body>
+
+
+</html>