-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwownero-bc-size.html
50 lines (46 loc) · 1.76 KB
/
wownero-bc-size.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
<html>
<header><title>Wownero blockchain size</title>
<!-- Styles -->
<style>
#chartdiv {
width : 100%;
height : 500px;
}
</style>
<!-- Resources -->
<script src="https://www.amcharts.com/lib/3/amcharts.js"></script>
<script src="https://www.amcharts.com/lib/3/serial.js"></script>
<script src="https://www.amcharts.com/lib/3/plugins/export/export.min.js"></script>
<link rel="stylesheet" href="https://www.amcharts.com/lib/3/plugins/export/export.css" type="text/css" media="all" />
<script src="https://www.amcharts.com/lib/3/themes/light.js"></script>
<script src="js/util.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/wownero-data-0.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/wownero-data-1.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/wownero-data-2.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/wownero-data-3.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/wownero-data-4.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/wownero-data-5.js"></script>
<script src="js/bc-size.js"></script>
<script src="wownero-config.js"></script>
<!-- Chart code -->
<script>
var chart = get_chart([].concat(
chartData_0,
chartData_1,
chartData_2,
chartData_3,
chartData_4,
chartData_5,
), wownero_config);
function togglePan() {
chart.chartCursor.pan = document.getElementById("pan").checked;
}
</script>
</header>
<body>
<h1>Wownero blockchain size</h1>
<div id="chartdiv"></div>
<p><input type="checkbox" id="pan" onclick="togglePan()">Enable panning</p>
<p><a href="./">Back to top</a></p>
</body>
</html>