-
Notifications
You must be signed in to change notification settings - Fork 3
/
index_dark.html
70 lines (70 loc) · 2.06 KB
/
index_dark.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="js/highstock.js"></script>
<script src="js/themes/dark-unica.js"></script>
</head>
<body>
<div id="container" style="position:absolute;top:0;right:0;bottom:0; left:0;"></div>
<script>
$(function () {
$('#container').highcharts({
chart: {
type: 'spline'
},
credits: {
enabled: 'true',
text: 'Powered by Leonid Logvinov',
href: 'mailto:[email protected]'
},
title: {
text: 'Kucharzuk'
},
yAxis: {
type: 'datetime',
title: {
text: 'Time'
}
},
xAxis: {
type: 'datetime',
tickInterval: 24 * 3600 * 1000
},
rangeSelector: {
enabled: true
},
legend: {
enabled: false
},
navigator: {
enabled: true
},
tooltip: {
pointFormat: ""
},
series: [
{
data: [
{x: 1404432000000, y: 49991000, name: "13:53:11"},
{x: 1404691200000, y: 50315000, name: "13:58:35"},
{x: 1404777600000, y: 49473000, name: "13:44:33"},
{x: 1404864000000, y: 49805000, name: "13:50:05"},
{x: 1405036800000, y: 49524000, name: "13:45:24"},
{x: 1405296000000, y: 49832000, name: "13:50:32"},
{x: 1405382400000, y: 49372000, name: "13:42:52"},
{x: 1405468800000, y: 51029000, name: "14:10:29"},
{x: 1405555200000, y: 50451000, name: "14:00:51"},
{x: 1405641600000, y: 48726000, name: "13:32:06"},
{x: 1405900800000, y: 50530000, name: "14:02:10"}
]
}
]
});
})
;
</script>
</body>
</html>