-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
64 lines (52 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<!--<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding"> -->
<meta charset="UTF-8">
<meta name="description" content="Plotly visualization template">
<meta name="keywords" content="d3, d3.js, visualization, plotly, dashboard">
<meta name="author" content="Jesús Martínez-Blanco">
<title>Plotly visualization template</title>
<!--<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />-->
<link href="css/chumo.css" rel="stylesheet">
<script src="lib/d3.min.js"></script>
<script src="lib/plotly-latest.min.js"></script>
</head>
<body style='text-align:center'>
<div id='title'>
This is an interactive plot
</div>
<div id='container'>
</div>
<div id='panel'>
<p>
<button id='loadData' type='button' onclick='loadData()'>RELOAD DATA</button>
</p>
<p>
<label for="x_coord">
x coordinate =
</label>
<select id="x_coord" onchange="changePlot()">
<option value="x1">x coord 1</option>
<option value="x2">x coord 2</option>
<option value="x3">x coord 3</option>
</select>
</p>
<p>
<label for="y_coord">
y coordinate =
</label>
<select id="y_coord" onchange="changePlot()">
<option value="y1">y coord 1</option>
<option value="y2">y coord 2</option>
<option value="y3">y coord 3</option>
</select>
</p>
</div>
<div id='logo'>
<img src='images/logo.png' alt='logo' width='200px'>
</div>
<script src="js/Script.js"></script>
</body>
</html>