You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
diff-chart/monero-nonce-1.html

60 lines
2.6 KiB

<html>
<header><title>Monero nonce</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-10.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-11.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-12.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-13.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-14.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-15.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-16.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-17.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-18.js"></script>
<script src="https://github.com/stoffu/diff-chart/releases/download/data/monero-data-19.js"></script>
<script src="js/nonce.js"></script>
<script src="monero-config.js"></script>
<!-- Chart code -->
<script>
var chart = get_chart([].concat(
chartData_10,
chartData_11,
chartData_12,
chartData_13,
chartData_14,
chartData_15,
chartData_16,
chartData_17,
chartData_18,
chartData_19,
), monero_offset_1);
function togglePan() {
chart.chartCursor.pan = document.getElementById("pan").checked;
}
</script>
</header>
<body>
<h1>Monero nonce</h1>
<p>Since drawing many points in amCharts is somehow very slow and can make your browser unresponsive, the maximum number of points being drawn is limited to 200000 which is what the initial zoom level shows. For easily viewing the past data, use the "Show all" button to maximally zoom out and then use mouse dragging to select the time period as you wish.</p>
<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>