aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/charting/tests/test_widget2d.html
blob: f97719f2340172535711cf0a535cd4d64db9cd83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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>