-
Notifications
You must be signed in to change notification settings - Fork 4
/
monero-block-reward-2.html
58 lines (54 loc) · 2.26 KB
/
monero-block-reward-2.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
<html>
<header><title>Monero block reward</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/monero-data-20.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-21.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-22.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-23.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-24.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-25.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-26.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-27.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-28.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-29.js"></script>
<script src="js/block-reward.js"></script>
<script src="monero-config.js"></script>
<!-- Chart code -->
<script>
var chart = get_chart([].concat(
chartData_20,
chartData_21,
chartData_22,
chartData_23,
chartData_24,
chartData_25,
chartData_26,
chartData_27,
chartData_28,
chartData_29,
), monero_config, monero_offset_2);
function togglePan() {
chart.chartCursor.pan = document.getElementById("pan").checked;
}
</script>
</header>
<body>
<h1>Monero block reward</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>