-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsontest.php
More file actions
39 lines (33 loc) · 1.14 KB
/
jsontest.php
File metadata and controls
39 lines (33 loc) · 1.14 KB
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
<html>
<head>
<script src="http://d3js.org/d3.v2.js"></script>
<link href="jquery-ui-1.9.0.custom/css/smoothness/jquery-ui-1.9.0.custom.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<link href="barstyles.css" rel="stylesheet">
<script src="jquery-ui-1.9.0.custom/js/jquery-1.8.2.js"></script>
<script src="jquery-ui-1.9.0.custom/js/jquery-ui-1.9.0.custom.js"></script>
<script src="histogramRefresh.js"></script>
</head>
<body>
<script>
var rawData = new Object();
var selectedDataset = "2012-10-15 14:23:46";
</script>
<form>
<select name="users" onchange="showUser(this.value,200)">
<option value="">Select a person:</option>
<option value="1">Peter Griffin</option>
<option value="2">Lois Griffin</option>
<option value="3">Glenn Quagmire</option>
<option value="4">Joseph Swanson</option>
</select>
</form>
<br />
<div id="txtHint"><b>JSON data will be listed here.</b></div>
<div id="slider" style="width:400px;"></div>
<div id="durationchart" class="histogram" width="500">
<div id="roamHist"><h2>Duration Times</h2></div>
</div>
<script src="roamhistogram.js"></script>
</body>
</html>