-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
35 lines (33 loc) · 1.03 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
<!DOCTYPE HTML>
<html lang="ru">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Облигации Грузовичкоф</title>
<link rel="stylesheet" type="text/css" href="../../static/css/main.css">
</head>
<body>
<div id="container" class="chart"></div>
<script src="../../static/js/jquery-3.1.1.min.js"></script>
<script src="../../static/js/main.js"></script>
<script src="../../static/js/highstock.js"></script>
<script type="text/javascript">
loadData('values.csv').then(function(result) {
plotGraph({
series: [
{
type: 'line',
name: 'ГрузЦ БОП1',
data: parse_csv(result, 1)
},
{
type: 'line',
name: 'ГрузЦ БОП2',
data: parse_csv(result, 2)
}
]
});
});
</script>
</body>
</html>