-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovingBarCart.html
33 lines (32 loc) · 1.24 KB
/
movingBarCart.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 lang="en">
<head>
<meta charset="utf-8">
<title>d3</title>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/angularjs/angular.min.js"></script>
<script src="bower_components/d3/d3.min.js"></script>
<script src="bower_components/underscore/underscore-min.js"></script>
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="js/main.js"></script>
<script src="js/barChartCtrl.js"></script>
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
<div ng-app="myApp">
<div class="container-fluid" ng-controller="ctrl">
<div class="row">
<div class="col-lg-12">
<div class="well" ng-controller="dashboardBarCtrl">
<moving-bar-chart new-number="newNumber"></moving-bar-chart>
</div>
</div>
</div>
</div>
</div>
<script src="js/movingBarChart.js"></script>
</body>
</html>