-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatisctic.html
50 lines (48 loc) · 1.2 KB
/
statisctic.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<!--TODO refactor-->
<script src="./node_modules/jquery/dist/jquery.js"></script>
<script src="./node_modules/highcharts/highcharts.js"></script>
<script src="./node_modules/highcharts/modules/exporting.js"></script>
</head>
<body>
<div id="chart"></div>
<script>
$(function () {
$('#chart').highcharts({
chart: {
type: 'column'
},
title: {
text: 'Energy Comparison'
},
xAxis: {
categories: [
'Energy'
],
crosshair: true
},
yAxis: {
min: 0
},
plotOptions: {
column: {
pointPadding: 0.2,
borderWidth: 0
}
},
series: [{
name: 'Genetic Algorithm',
data: [123]
}, {
name: 'Greedy Algorithm',
data: [90]
}]
});
});
</script>
</body>
</html>