-
Notifications
You must be signed in to change notification settings - Fork 1
/
clhist.html
43 lines (43 loc) · 2.39 KB
/
clhist.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Champions League Knockout Stage</title>
<link rel="stylesheet" href="css/clhist.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script src="js/clhist.js"></script>
</head>
<body>
<div id="dashboard_div">
<h3>Champions League Group & Knockout Stage Appearances</h3>
<p>
<label for="startYYYY">Date range:</label>
<input type="text" id="startYYYY" readonly style="border:0; color:#f6931f; font-weight:bold;" onchange="drawChart()">
- <input type="text" id="endYYYY" readonly style="border:0; color:#f6931f; font-weight:bold;" onchange="drawChart()">
(<span id="spanYears"></span> years)
</p>
<div id="slider-range"></div>
<p>
Show
<input type="radio" name="teamOrCountry" onchange="drawChart()" value="team" checked> Teams<span id="spanTeams"></span>
<input type="radio" name="teamOrCountry" onchange="drawChart()" value="country"> Countries<span id="spanCountries"></span>
<input id="weighted" type="checkbox" onclick="drawChart()">Weighted <i>(Winner=16, Runner-up=8, Semi Finalist=4 etc...)</i>
</p>
<div id="stages">
<input id="groups" type="checkbox" checked="checked" onclick="drawChart()">Group Stage
<input id="last24" type="checkbox" checked="checked" onclick="drawChart()">Last 24 (<i>Pre-2000</i>)
<input id="last16" type="checkbox" checked="checked" onclick="drawChart()">Last 16
<input id="qtrfin" type="checkbox" checked="checked" onclick="drawChart()">Quarter Finalists
<input id="semifn" type="checkbox" checked="checked" onclick="drawChart()">Semi Finalists
<input id="runner" type="checkbox" checked="checked" onclick="drawChart()">Runners Up
<input id="winner" type="checkbox" checked="checked" onclick="drawChart()">Winners
</div>
</div>
<div id="piechart_3d"></div>
<div id="divDebug"></div>
</body>
</html>