]> git.pond.sub.org Git - eow/blobdiff - static/dojo-release-1.1.1/dojox/charting/tests/test_widget2d.html
add Dojo 1.1.1
[eow] / static / dojo-release-1.1.1 / dojox / charting / tests / test_widget2d.html
diff --git a/static/dojo-release-1.1.1/dojox/charting/tests/test_widget2d.html b/static/dojo-release-1.1.1/dojox/charting/tests/test_widget2d.html
new file mode 100644 (file)
index 0000000..f97719f
--- /dev/null
@@ -0,0 +1,98 @@
+<html>
+<head>
+<title>Chart 2D</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<style type="text/css">
+       @import "../../../dojo/resources/dojo.css";
+       @import "../../../dijit/tests/css/dijitTests.css";
+</style>
+<!--
+The next line should include Microsoft's Silverligth.js, if you plan to use the silverlight backend
+<script type="text/javascript" src="Silverlight.js"></script>
+-->
+<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true, parseOnLoad: true"></script>
+<script type="text/javascript" src="../../lang/functional.js"></script>
+<script type="text/javascript" src="../Theme.js"></script>
+<script type="text/javascript" src="../scaler.js"></script>
+<script type="text/javascript" src="../Chart2D.js"></script>
+<script type="text/javascript" src="../widget/Chart2D.js"></script>
+
+<script type="text/javascript">
+       dojo.require("dojox.charting.widget.Chart2D");
+       dojo.require("dojox.charting.themes.PlotKit.orange");
+       dojo.require("dojox.charting.themes.PlotKit.blue");
+       dojo.require("dojox.charting.themes.PlotKit.green");
+       dojo.require("dojox.data.HtmlStore");
+       
+       seriesB = [2.6, 1.8, 2, 1, 1.4, 0.7, 2];
+       
+       dojo.require("dojo.parser");    // scan page for widgets and instantiate them
+</script>
+
+</head>
+<body>
+<h1>Chart 2D</h1>
+<p>Examples of charts using widgets.</p>
+<div dojoType="dojox.data.HtmlStore" dataId="tableExample" jsId="tableStore"></div>
+<table id="tableExample" style="display: none;">
+       <thead>
+               <tr><th>value</th></tr>
+       </thead>
+       <tbody>
+               <tr><td>6.3</td></tr>
+               <tr><td>1.8</td></tr>
+               <tr><td>3  </td></tr>
+               <tr><td>0.5</td></tr>
+               <tr><td>4.4</td></tr>
+               <tr><td>2.7</td></tr>
+               <tr><td>2  </td></tr>
+       </tbody>
+</table>
+<table border="0" cellspacing="30">
+       <tr>
+               <td>
+                       <div dojoType="dojox.charting.widget.Chart2D" style="width: 300px; height: 300px;">
+                               <div class="axis" name="x" font="italic normal normal 8pt Tahoma"></div>
+                               <div class="axis" name="y" vertical="true" fixUpper="major" includeZero="true" 
+                                       font="italic normal normal 8pt Tahoma"></div>
+                               <div class="plot" name="default" type="Areas"></div>
+                               <div class="plot" name="grid" type="Grid"></div>
+                               <div class="series" name="Series A" data="1, 2, 0.5, 1.5, 1, 2.8, 0.4"></div>
+                               <div class="series" name="Series B" array="seriesB"></div>
+                               <div class="series" name="Series C" store="tableStore" valueFn="Number(x)"></div>
+                       </div>
+               </td>
+               <td>
+                       <div dojoType="dojox.charting.widget.Chart2D" theme="dojox.charting.themes.PlotKit.orange" 
+                                       fill="'lightgrey'" style="width: 300px; height: 300px;">
+                               <div class="axis" name="x" font="italic normal bold 10pt Tahoma"></div>
+                               <div class="axis" name="y" vertical="true" fixUpper="major" includeZero="true" 
+                                       font="italic normal bold 10pt Tahoma"></div>
+                               <div class="plot" name="default" type="Areas"></div>
+                               <div class="plot" name="grid" type="Grid"></div>
+                               <div class="series" name="Series A" data="1, 2, 0.5, 1.5, 1, 2.8, 0.4"></div>
+                               <div class="series" name="Series B" array="seriesB"></div>
+                               <div class="series" name="Series C" store="tableStore" valueFn="Number(x)" stroke="'#666666'" fill="'#b3b3b3'"></div>
+                       </div>
+               </td>
+       </tr>
+       <tr>
+               <td>
+                       <div dojoType="dojox.charting.widget.Chart2D" theme="dojox.charting.themes.PlotKit.blue"
+                                        style="width: 300px; height: 300px;">
+                               <div class="plot" name="default" type="Pie" radius="100" fontColor="white"></div>
+                               <div class="series" name="Series B" array="seriesB"></div>
+                       </div>
+               </td>
+               <td>
+                       <div dojoType="dojox.charting.widget.Chart2D" theme="dojox.charting.themes.PlotKit.green"
+                                        style="width: 300px; height: 300px;">
+                               <div class="plot" name="default" type="Pie" radius="100" fontColor="black" labelOffset="-20"></div>
+                               <div class="series" name="Series C" store="tableStore" valueFn="Number(x)"></div>
+                       </div>
+               </td>
+       </tr>
+</table>
+<p>That's all Folks!</p>
+</body>
+</html>