-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (55 loc) · 2.41 KB
/
index.html
File metadata and controls
69 lines (55 loc) · 2.41 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>charts</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="chart.js"></script>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Gugi|Open+Sans" rel="stylesheet">
</head>
<body>
<div class="card" id="canvasContainer">
<canvas id="chartCanvas" onclick="displayData(event)"></canvas>
</div>
<div class="flexes">
<div class="card" style="width:35%;">
<h3 class="card-title">Measures</h3>
<div class="card-body" style="width:30%;">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="Intensity" checked="true" onclick="toggle(this)"><label class="form-check-label">Intensity</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="Relevance" checked="true" onclick="toggle(this)"><label class="form-check-label">Relevance</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="Likelihood" checked="true" onclick="toggle(this)"><label class="form-check-label">Likelihood</label>
</div>
</div>
</div>
<div class="card" style="width:65%;" id="topicDetails">
<h3 class="card-title">Click on a Node</h3>
</div>
</div>
<div class="flexes">
<div style="width:33%;" class="card">
<h3 class="card-title">Choose Label</h3>
<select id="labelList" onchange="createChart()">
<option value="topic">Topic</option>
<option value="sector">Sector</option>
<option value="region" selected="selected">Region</option>
<option value="pestle">Pestle</option>
<option value="end_year">Year</option>
</select>
</div>
<div class="card" style="width:33%;" id="subLabelList">
<h3 class="card-title">Choose SubLabel</h3>
</div>
</div>
</body>
</html>