-
Notifications
You must be signed in to change notification settings - Fork 1
/
detail.html
36 lines (36 loc) · 1.04 KB
/
detail.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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>VizADR</title>
<link href="style-detail.css" rel="stylesheet" type="text/css"></link>
<link rel="stylesheet" href="bootstrap.css" media="screen">
<script src="d3.min.js"></script>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top">
<div class="navbar-header">
<a href="overview.html" class="navbar-brand">VizADR</a>
</div>
</div>
<div id="main">
<div id="reactiondrug"></div>
<div id="mosaicplot"></div>
<div id="overviewinfo">
<div id="infopanel">
<div class="panel panel-info">
<div class="panel-heading">Info</div>
<div class="panel-body">
This chart shows distribution of gender, age groups and<br>outcomes for a specific reaction triggered by a specific drug.
<br>
<br>
Mover over bars for %.
</div>
</div>
</div>
</div>
<script src="detail.js"></script>
<script src="jquery-1.10.2.min.js"></script>
<script src="bootstrap.js"></script>
</div>
</html>