-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathindex.html
80 lines (79 loc) · 3.75 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>JQM Charts</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link href="content/jquery.mobile-1.1.0.min.css" rel="stylesheet" type="text/css" />
<link href="content/jquery.jqplot.css" rel="stylesheet" type="text/css" />
<script src="scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="scripts/jquery.mobile-1.1.0.min.js" type="text/javascript"></script>
<style type="text/css">
.myChart {
width: 300px;
height: 200px;
}
</style>
</head>
<body>
<div id="page1" data-role="page">
<header data-role="header" data-position="fixed">
<h1>JQM Charts</h1>
</header>
<section data-role="content">
<ul data-role="listview" data-inset="true" data-shadow="true">
<li data-role="list-divider" style="text-align: center;">Choose Your Chart</li>
<li><a href="#pageBarChart">Bar Chart</a></li>
<li><a href="#pagePieChart">Pie Chart</a></li>
<li><a href="#pagePlotChart">Plot Chart</a></li>
</ul>
</section>
</div>
<div id="pageBarChart" data-role="page" data-rockncoder-jspage="manageBarChart">
<header data-role="header" data-position="fixed">
<h1>Bar Chart</h1>
</header>
<section data-role="content">
<div id="barChart" class="myChart"></div>
<button id="refreshBarChart" value="Refresh Chart" data-mini="true"></button>
<input type="range" id="pageBarSliderA" value="25" min="0" max="50" data-mini="true"/>
<input type="range" id="pageBarSliderB" value="25" min="0" max="50" data-mini="true"/>
<input type="range" id="pageBarSliderC" value="25" min="0" max="50" data-mini="true"/>
</section>
</div>
<div id="pagePieChart" data-role="page" data-rockncoder-jspage="managePieChart">
<header data-role="header" data-position="fixed">
<h1>Pie Chart</h1>
</header>
<section data-role="content">
<div id="pieChart" class="myChart"></div>
<button id="refreshPieChart" value="Refresh Chart" data-mini="true"></button>
<input type="range" id="pagePieSliderA" value="50" min="0" max="100" data-mini="true"/>
<input type="range" id="pagePieSliderB" value="50" min="0" max="100" data-mini="true"/>
<input type="range" id="pagePieSliderC" value="50" min="0" max="100" data-mini="true"/>
</section>
</div>
<div id="pagePlotChart" data-role="page" data-rockncoder-jspage="managePlotChart">
<header data-role="header" data-position="fixed">
<h1>Plot Chart</h1>
</header>
<section data-role="content">
<div id="plotChart" class="myChart"></div>
<button id="refreshPlotChart" value="Refresh Chart" data-mini="true"></button>
<input type="range" id="plot1" value="0" min="-250" max="250" data-mini="true"/>
<input type="range" id="plot2" value="0" min="-250" max="250" data-mini="true"/>
<input type="range" id="plot3" value="0" min="-250" max="250" data-mini="true"/>
<input type="range" id="plot4" value="0" min="-250" max="250" data-mini="true"/>
<input type="range" id="plot5" value="0" min="-250" max="250" data-mini="true"/>
<input type="range" id="plot6" value="0" min="-250" max="250" data-mini="true"/>
</section>
</div>
<script src="scripts/jquery.jqplot.min.js" type="text/javascript"></script>
<script src="scripts/jqplot.pieRenderer.min.js" type="text/javascript"></script>
<script src="scripts/jqplot.barRenderer.min.js" type="text/javascript"></script>
<script src="scripts/jqplot.categoryAxisRenderer.min.js" type="text/javascript"></script>
<script src="scripts/underscore-min.js" type="text/javascript"></script>
<script src="scripts/hideAddressBar.js" type="text/javascript"></script>
<script src="scripts/app.js" type="text/javascript"></script>
</body>
</html>