summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/benchmark/chart.html
blob: 55718cefae698a900c7859d3a65a20f5555d2b39 (plain)
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
<!--
Copyright Louis Dionne 2013-2017
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>