1
2
3{
4  "chart": {
5    "type": "column"
6  },
7  "legend": {
8    "enabled": false
9  },
10  "xAxis": {
11    "type": "category"
12  },
13  "title": {
14    "text": "Including various metaprogramming libraries"
15  },
16  "plotOptions": {
17    "series": {
18      "borderWidth": 0,
19      "dataLabels": {
20        "enabled": true,
21        "format": "{point.y:.5f}s"
22      }
23    }
24  },
25  "series": [{
26    "name": "Include time",
27    "colorByPoint": true,
28    "data": [
29      {
30        "name": "Baseline (no includes)",
31        "y": 0.0374617682
32      }, {
33        "name": "Boost.Hana",
34        "y": 0.37690043
35      }
36
37
38      , {
39        "name": "Boost.MPL",
40        "y": 1.9740084744000002
41      }, {
42        "name": "Boost.Fusion",
43        "y": 1.4771391952
44      }
45
46
47
48
49
50    ]
51  }]
52}
53