e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
98 lines
3.8 KiB
HTML
98 lines
3.8 KiB
HTML
<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>
|