Files

52 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2023-03-13 09:05:51 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Termometro digitale</title>
<meta http-equiv="refresh" content="5" >
<script src="data.html"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="width:800px; height:400px;"></div>
<script>
document.addEventListener('DOMContentLoaded', function () {
var myChart = Highcharts.chart('container', {
chart: {
type: 'line'
},
title: {
text: 'Super termometrone by Paolo'
},
xAxis: {
min: 1,
max: 24,
tickAmount: 7,
title: {
text: 'Orario'
}
},
yAxis: {
min: 0,
max: 40,
title: {
text: 'Temperatura'
}
},
series: [{
name: 'Temperatura',
data: array
},{
name: 'Temperara',
data: array_ds
}]
});
});
</script>
</head>
<body>
<p style='text-align: left; font-family:arial'><span style='color: #0082ff;'>Temperatura attuale =
28.2
<09>C</p>
</body>
</html>