-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (41 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>SAS Graph Team 2</title>
<link rel="stylesheet" href="styles.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.19/p5.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
</head>
<body>
<div id="sidebar">
<div id="icons">
<div id="bar" class="choice"></div>
<div id="line" class="choice"></div>
<div id="pie" class="choice"></div>
<div id="donut" class="choice"></div>
</div>
<div id="toggler" class="pushRight"><span id="more">More Charts!</span></div>
</div>
<div id="gra-d1">
<div id="header">
<h1>SAS Team 2</h1>
<p>Michael MacKrell, Connor Patterson, James Schaefer, Philip Jones, Jose Chavez</p>
</div>
<div class="charts">
<div id="data" class="outer">
<table>
</table>
</div>
<div id="graph" class="outer"></div>
</div>
<div id="currentChartTitle">Bar Chart</div>
<div class="buttons">
<button type="button" id="read">Read Data</button>
<button type="button" id="genChart">Generate Chart</button>
<button type="button" id="clear">Clear</button>
<div id="changeWidthSpan"><input id="width" type="text"/><button type="button" id="changeWidth">New Width (100-10000)</button><span>
</div>
<script src="scripts.js"></script>
</div>
</body>
</html>