-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
124 lines (109 loc) · 5.06 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!--
Human Resources Dashboard
Documentation: http://docs.anychart.com/
API: https://api.anychart.com/
Support: http://www.anychart.com/support/
Contacts: http://www.anychart.com/company/
http://www.anychart.com/
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="author" content="anychart.com">
<meta name="description"
content="Human Resources dashboard provides a large range of employee-related information such as statuses, payrolls, performance etc for HR managers to go over and refer to quickly in the form of graphs and pie charts. | Fullscreen version">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Human Resources Dashboard</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- AnyChart UI -->
<link rel="stylesheet" href="node_modules/anychart/dist/css/anychart-ui.min.css">
<link rel="stylesheet" href="node_modules/anychart/dist/fonts/css/anychart-font.min.css">
<!--css-->
<link rel="stylesheet" href="css/style.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="loader-wrapper" class="anychart-loader">
<div class="rotating-cover">
<div class="rotating-plane">
<div class="chart-row"><span class="chart-col green"></span><span class="chart-col orange"></span><span
class="chart-col red"></span></div>
</div>
</div>
</div>
<div class="wrapper">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="chart_container">
<div class="chart" id="manufacture-dept"></div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="chart_container">
<div class="chart" id="sales-dept"></div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 ">
<div class="chart_container">
<div class="chart" id="engineering-dept"></div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 ">
<div class="chart_container">
<div class="chart" id="finance-dept"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-12">
<div class="chart_container">
<div class="chart" id="salary"></div>
</div>
</div>
<div class="col-md-4 col-sm-12">
<div class="chart_container">
<div class="chart" id="grade-composition"></div>
</div>
</div>
<div class="col-md-4 col-sm-12">
<div class="chart_container">
<div class="chart" id="employment-date"></div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="chart_container">
<div class="chart" id="score-card"></div>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
crossorigin="anonymous"></script>
<script src="node_modules/anychart/dist/js/anychart-base.min.js"></script>
<script src="node_modules/anychart/dist/js/anychart-exports.min.js"></script>
<script src="node_modules/anychart/dist/js/anychart-ui.min.js"></script>
<script src="dummy-data.js"></script>
<script src="js/common.js"></script>
<!-- This library enables the automatic resizing of the height and width of
both same and cross domain iFrames to fit their contained content. -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.6.3/iframeResizer.contentWindow.min.js"></script>
</body>
</html>