-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 934 Bytes
/
index.html
File metadata and controls
49 lines (43 loc) · 934 Bytes
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
<!-- Styles -->
<style>
#bod {
margin: 0;
background: #dee3eeff;
}
#chartdiv {
position: absolute;
width: 1430px;
height: 900px;
}
.label-header {
padding: 2px 16px;
color: white;
}
.basic {
color: white;
padding: 2px 16px;
}
/* label Body */
.label-body {padding: 2px 16px;}
/* label Footer */
.label-footer {
padding: 1px 16px;
color: white;
}
.label-content {
background-color: #fefefe;
margin: auto; /* 15% from the top and centered */
/* width: 80%; */
}
</style>
<!-- Resources -->
<script src="https://cdn.amcharts.com/lib/4/core.js"></script>
<script src="https://cdn.amcharts.com/lib/4/charts.js"></script>
<script src="https://cdn.amcharts.com/lib/4/themes/animated.js"></script>
<script src="https://cdn.amcharts.com/lib/4/plugins/bullets.js"></script>
<!-- Chart code -->
<script type="module" src="script.js"></script>
<!-- HTML -->
<body id='bod'>
<div id="chartdiv"></div>
</body>