forked from angular-google-chart/angular-google-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (94 loc) · 4.33 KB
/
index.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Google Chart Tools AngularJS Directive </title>
</head>
<body ng-app="google-chart-sample" ng-cloak="">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a href="#" class="navbar-brand">angular-google-chart</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="https://github.com/angular-google-chart/angular-google-chart"><i class="fa fa-github"></i>
Github</a>
</li>
<li class="dropdown">
<a href="" class="dropdown-toggle" style="cursor: pointer" data-toggle="dropdown">Samples <b
class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#/generic/BarChart"><i class="fa fa-bars"></i> Bar chart</a></li>
<li><a href="#/generic/ColumnChart"><i class="fa fa-bar-chart-o"></i> Column chart</a></li>
<li><a href="#/generic/PieChart"><i class="fa fa-circle"></i> Pie chart</a></li>
<li><a href="#/generic/LineChart">Line chart</a></li>
<li><a href="#/annotation">Annotation chart</a></li>
<li><a href="#/gauge">Gauge chart</a></li>
<li class="divider"></li>
<li class="dropdown-header">All together</li>
<li><a href="#/fat">Mutli charts sample</a></li>
</ul>
</li>
<li><a href="http://code.google.com/apis/chart/"><i class="fa fa-question-circle"></i> Chart reference
at Google</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12" style="text-align: center;">
<h1>AngularJs Google Chart Tools directive</h1>
<hr/>
</div>
</div>
<div class="row">
<div ng-view></div>
</div>
</div>
<!-- jQuery imported here only for Bootstrap.js and for this sample functions. It's not needed for the directive itself. -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.8/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.8/angular-route.min.js"></script>
<script src="ng-google-chart.js"></script>
<script src="sample.js"></script>
<script src="partials/annotation.js"></script>
<script src="partials/generic.js"></script>
<script src="partials/gauge.js"></script>
<script src="partials/fat.js"></script>
<!-- Google Analytics -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-3451018-11', 'github.io');
ga('send', 'pageview');
</script>
</body>
</html>