2
0
mirror of https://github.com/boostorg/hana.git synced 2026-01-21 04:52:19 +00:00
Files
hana/benchmark/chart.html
Louis Dionne 870281f601 Exclude some files from the Boost-inspect report
- chart.html contains a link to external content, but that's OK.
- doc/header.html and doc/footer.html contain "invalid links" and
  "invalid characters" because of $relpath^, which is understood by
  Doxygen.
2016-01-28 12:28:50 -05:00

41 lines
1.3 KiB
HTML

<!--
Copyright Louis Dionne 2013-2016
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
-->
<!-- boost-no-inspect -->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="../doc/js/highcharts.js"></script>
<script type="text/javascript" src="../doc/js/highcharts-data.js"></script>
<script type="text/javascript" src="../doc/js/highcharts-exporting.js"></script>
<script type="text/javascript" src="../doc/js/chart.js"></script>
<script type="text/javascript">
var redrawChart = function(dataset) {
var path = "../build/benchmark/benchmark." + dataset + ".json";
$.getJSON(path, function(options) {
if ($("#container").highcharts())
$("#container").highcharts().destroy();
Hana.initChart($("#container"), options);
$('#container').highcharts().redraw();
});
};
</script>
</head>
<body>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
<input type="text" size=100 id="dataset" class="enter" value="" onchange="redrawChart(this.value)"/>
</body>
</html>