-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistograma.html
31 lines (26 loc) · 971 Bytes
/
histograma.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>D3 Histogram</title>
<link rel="stylesheet" type="text/css" href="style_histograma.css" />
</head>
<body>
<select id='metric'>
<option value = 'humidity' selected>Humidity %</option>
<option value = 'temperature' >Temperature ºF</option>
<option value = 'dewPoint'>Dew Point ºF</option>
<option value = 'windSpeed'>Wind Speed m/h</option>
<option value = 'cloudCover'>Cloud Cover %</option>
<option value = 'ozone'>Ozone ppm</option>
</select>
<div id="chart"></div>
<center>
<button class="button button1" onclick="myVolta()">Volta</button>
</center>
<script> function myVolta() {window.location.href='https://mariochem.github.io/D3-JavaScript';}</script>
</body>
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="app_histograma.js"></script>
</html>