forked from jcarver989/raphy-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath_menu.html
30 lines (27 loc) · 1.36 KB
/
path_menu.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
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/examples.css" />
<link rel="stylesheet" type="text/css" href="css/syntax.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script type="text/javascript" src="https://raw.github.com/DmitryBaranovskiy/raphael/master/raphael-min.js"></script>
<script type="text/javascript" src="../compiled/charts.js"></script>
<script type="text/javascript" src="path_menu.js"></script>
<script type="text/javascript" src="segment_counts.js"></script>
</head>
<body>
<div id="bubbles">
<ul id='bubbles-menu'>
<li><a href="#" id='industry-bubble-button'>Industry</a></li>
<li><a href="#" id='functional-area-bubble-button'>Functional Area</a></li>
<li><a href="#" id='company-size-bubble-button'>Company Size</a></li>
<li><a href="#" id='seniority-bubble-button'>Seniority</a></li>
</ul>
<div style="width:800px; height: 350px; margin: 0 auto;" id="company_size"></div>
<div style="width:800px; height: 350px; margin: 0 auto;" id="industry"></div>
<div style="width:800px; height: 350px; margin: 0 auto;" id="functional_area"></div>
<div style="width:800px; height: 350px; margin: 0 auto;" id="seniority"></div>
</div>
</div>
</body>
</html>