aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/charting/tests/test_sparklines.html
blob: 2d3a36fb5dbfeba6c7303aaf1fdc19d917534b51 (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<html>
	<head>
		<title>Chart 2D -- Sparklines Edition</title>
		<style type="text/css">
			@import "../../../dojo/resources/dojo.css";
			@import "../../../dijit/tests/css/dijitTests.css";
			.volume { color: #666666; }

			.label { 
				text-align: right;
				line-height: 1.5em;
			}
		</style>
		<script type="text/javascript" src="../../../dojo/dojo.js" 
			djConfig="isDebug: false, parseOnLoad: true"></script>
		<script type="text/javascript">
			dojo.require("dojox.charting.widget.Chart2D");
			dojo.require("dojox.charting.themes.ET.greys");
			dojo.require("dojox.data.HtmlStore");
			dojo.require("dojox.data.CsvStore");
			dojo.require("dojo.parser");
		</script>

	</head>
	<body>
		<h1>Chart 2D</h1>
		<p>Sparkline-style charts using dojox.charting</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 cellpadding="0" cellspacing="3" border="0">
			<tr>
				<td class="label">
					Simple Sparkline:
				</td>
				<td>
					<div dojoType="dojox.charting.widget.Chart2D" 
						theme="dojox.charting.themes.ET.greys" 
						margins="{ l: 0, r: 0, t: 0, b: 0 }"
						style="width: 100px; height: 15px;">
						<div class="plot" name="default" type="Lines"></div>
						<div class="series" name="Series A" store="tableStore" valueFn="Number(x)"></div>
					</div>
				</td>
				<td>
					7 arbitrary data points
				</td>
			</tr>
			<tr>
				<td class="label">
					<a href="http://finance.google.com/finance?q=Google">Google </a> Closing Price &amp; <span class="volume">Volume</span>:
				</td>
				<td>

					<div dojoType="dojox.data.CsvStore" jsId="googStore" 
						url="data/goog_prices.csv"></div>
					<div dojoType="dojox.charting.widget.Chart2D" 
						theme="dojox.charting.themes.ET.greys" 
						margins="{ l: 0, r: 0, t: 0, b: 0 }"
						style="width: 100px; height: 15px;">
						<div class="plot" name="default" type="Lines"></div>
						<div class="series" 
							name="Closing Price" 
							plot="default"
							store="googStore" 
							count="Infinity"
							field="Close"
							sort="[{ attribute: 'Date', descending: false }]"
							valueFn="Number(x)"></div>
						<div class="plot" name="volume" type="Areas"></div>
						<div class="series" 
							name="Volume" 
							plot="volume"
							store="googStore" 
							count="Infinity"
							field="Volume"
							sort="[{ attribute: 'Date', descending: false }]"
							stroke="{ color: '#666666', width: 0 }"
							fill="'#b3b3b3'"
							valueFn="Number(x/100000)"></div>
					</div>
					
				</td>
				<td>
					~1400 data points, all trading days since Jan '05
				</td>
			</tr>
			<tr>
				<td class="label">
					<a href="http://finance.google.com/finance?q=Yahoo">Yahoo</a> Closing Price &amp; <span class="volume">Volume</span>:
				</td>
				<td>

					<div dojoType="dojox.data.CsvStore" jsId="yahooStore" 
						url="data/yahoo_prices.csv"></div>
					<div dojoType="dojox.charting.widget.Chart2D" 
						theme="dojox.charting.themes.ET.greys" 
						margins="{ l: 0, r: 0, t: 0, b: 0 }"
						style="width: 100px; height: 15px;">
						<div class="plot" name="default" type="Lines"></div>
						<div class="series" 
							name="Closing Price" 
							plot="default"
							store="yahooStore" 
							count="Infinity"
							field="Close"
							sort="[{ attribute: 'Date', descending: false }]"
							valueFn="Number(x)"></div>
						<div class="plot" name="volume" type="Areas"></div>
						<div class="series" 
							name="Volume" 
							plot="volume"
							store="yahooStore" 
							count="Infinity"
							field="Volume"
							sort="[{ attribute: 'Date', descending: false }]"
							stroke="{ color: '#666666', width: 0 }"
							fill="'#b3b3b3'"
							valueFn="Number(x/100000)"></div>
					</div>
					
				</td>
				<td>
				</td>
			</tr>
			<tr>
				<td class="label">
					<a href="http://finance.google.com/finance?q=Microsoft">Microsoft</a> Closing Price &amp; <span class="volume">Volume</span>:
				</td>
				<td>
					<div dojoType="dojox.data.CsvStore" jsId="msftStore" 
						url="data/msft_prices.csv"></div>
					<div dojoType="dojox.charting.widget.Chart2D" 
						theme="dojox.charting.themes.ET.greys" 
						margins="{ l: 0, r: 0, t: 0, b: 0 }"
						style="width: 100px; height: 15px;">
						<div class="plot" name="default" type="Lines"></div>
						<div class="series" 
							name="Closing Price" 
							plot="default"
							store="msftStore" 
							count="Infinity"
							field="Close"
							sort="[{ attribute: 'Date', descending: false }]"
							valueFn="Number(x)"></div>
						<div class="plot" name="volume" type="Areas"></div>
						<div class="series" 
							name="Volume" 
							plot="volume"
							store="msftStore" 
							count="Infinity"
							field="Volume"
							sort="[{ attribute: 'Date', descending: false }]"
							stroke="{ color: '#666666', width: 0 }"
							fill="'#b3b3b3'"
							valueFn="Number(x/100000)"></div>
					</div>
					
				</td>
				<td>
				</td>
			</tr>

		</table>
	</body>
</html>