forked from phuonghuynh/bubble-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-bubble-chart.html
33 lines (31 loc) · 1.17 KB
/
test-bubble-chart.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
<!DOCTYPE html>
<html>
<head>
<title>Hello Bubble Chart</title>
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600,200italic,600italic&subset=latin,vietnamese' rel='stylesheet' type='text/css'>
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<script src="../bower_components/d3/d3.min.js"></script>
<script src="../bower_components/d3-transform/src/d3-transform.js"></script>
<script src="../bower_components/cafej/src/ext-array.js"></script>
<script src="../bower_components/cafej/src/misc.js"></script>
<script src="../bower_components/cafej/src/micro-observer.js"></script>
<script src="../bower_components/microplugin/src/microplugin.js"></script>
<script src="../src/bubble-chart.js"></script>
<script src="../src/plugins/central-click/central-click.js"></script>
<script src="../src/plugins/lines/lines.js"></script>
<script src="test-bubble-chart.js"></script>
<style>
.bubbleChart {
width: 100%;
margin: 0 auto;
}
.bubbleChart svg{
background: #000000;
}
</style>
</head>
<body style="background: #000000">
<div class="bubbleChart"/>
</body>
</html>