-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.html
82 lines (76 loc) · 3.7 KB
/
tests.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
<!DOCTYPE html>
<html lang="en" ng-app="pivotchart.tests" ng-controller="TestsCtrl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<title>Dashboard Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link href="//netdna.bootstrapcdn.com/bootswatch/3.1.1/yeti/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css" rel="stylesheet" media="screen">
<link href="bower_components/codemirror/lib/codemirror.css" rel="stylesheet" type="text/css" >
<link href="bower_components/angular-bootstrap-colorpicker/css/colorpicker.css" rel="stylesheet" type="text/css" >
<link href="less/pivotchart.less" rel="stylesheet/less" type="text/css" >
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<table>
<thead>
<tr>
<td></td>
<th ng-repeat="d in data">
{{d.title}}
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="chart in charts">
<th></th>
<td ng-repeat="d in data">
<graph-area data="d.data" x-w="width" x-h="height"
show-title="chart.showTitle" title="chart.title"
title-size="chart.titleSize" font="chart.font"
margin="chart.margin" show-legend="chart.showLegend"
reverse-legend="chart.type.type == 'pivot-bars' && chart.barPlacement == 'stacked'"
background="chart.background">
<svg dynamic-directive="chart.type.type" data="d.data" chart="chart"></svg>
</graph-area>
</td>
</tr>
</tbody>
</table>
<span ng-repeat="chart in charts">
</span>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="bower_components/jquery/jquery.min.js"></script>
<script src="bower_components/jquery-ui/ui/jquery-ui.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/codemirror/lib/codemirror.js"></script>
<script src="bower_components/codemirror/mode/javascript/javascript.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script src="bower_components/less.js/dist/less-1.7.0.min.js"></script>
<script src='bower_components/d3/d3.min.js'></script>
<script src='bower_components/lodash/dist/lodash.min.js'></script>
<script src='bower_components/angular-bootstrap-colorpicker/js/bootstrap-colorpicker-module.js'></script>
<script src="http://canvg.googlecode.com/svn/trunk/rgbcolor.js"></script>
<script src="http://canvg.googlecode.com/svn/trunk/StackBlur.js"></script>
<script src="http://canvg.googlecode.com/svn/trunk/canvg.js"></script>
<script src="src/directives.js"></script>
<script src="src/services.js"></script>
<script src="src/controllers.js"></script>
<script src="src/filters.js"></script>
<script src="src/tests.js"></script>
<script src="src/pivotchart.js"></script>
</body>
</html>