-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlead_report.html
More file actions
172 lines (155 loc) · 6.78 KB
/
lead_report.html
File metadata and controls
172 lines (155 loc) · 6.78 KB
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!doctype html>
<html lang="en">
<head>
<title>Analysed</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Css File Link -->
<link rel="stylesheet" href="css/index.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<!-- Material Icon -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Feather icon -->
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</head>
<body class="bg-light">
<div class="wrapper">
<!-- Navbar -->
<nav class="row navbar navbar-expand-md navbar-light bg-light fixed-top">
<nav class="col-2 d-xl-block d-lg-block d-md-block d-none">
<div class="upper_Layer">
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<img src="img/kruze.png" alt="logo" class="img-fluid ml-4 mt-2">
<div class="mx-auto mt-3 d-block sidebarCollapse" onclick="myFunction();">
<a class="material-icons ml-5" id="showMore" style="color:#3191b6">toggle_off</a>
</div>
</div>
</div>
</nav>
<nav class="col-md-10 col-sm-12">
<div class="d-flex d-row justify-content-between">
<div onclick="myFunctions();"
class="sidebarCollapse navbar-toggler d-md-none d-lg-none d-xl-none d-inline-flex float-left mt-2">
<i class="material-icons" style="color:white;" id="showmore">toggle_off</i>
</div>
<img src="img/kruze.png" alt="logo" class="img-fluid text-center navbar-toggler"
style="height: 50px; width: 100px">
<button class="navbar-toggler float-right" type="button" data-toggle="collapse"
data-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false"
aria-label="Toggle navigation">
<i class="material-icons mt-2" style="color:white">more_horiz</i>
</button>
</div>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<div class="d-flex flex-row col-12">
<div class="col-md-6 d-none d-md-block">
<div class="d-flex flex-row justify-content-xl-start justify-content-md-center">
<i class="material-icons mt-2 fullscreen_color" id="fullScreen"
onclick="openFullscreen();">fullscreen</i>
</div>
</div>
<div class="col-md-6 col-sm-12 d-flex flex-row justify-content-md-end justify-content-sm-center">
<a class=" nav-link" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
<span class="name_color">John Doe <i data-feather="chevron-down" class=""></i></span>
</a>
<div class="dropdown-menu mt-3" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item mt-3" href="profile.html"><i data-feather="user" class="mr-2"></i> Profile</a>
<a class="dropdown-item mt-3" href="#"><i data-feather="log-out" class="mr-2"></i> Logout</a>
</div>
</div>
</div>
</div>
</div>
</nav>
</nav>
</div>
<!-- Navbar end -->
<!-- Right Sidebar -->
<nav class="sidebar">
<ul class="list components nav">
<li class="nav-item active sideactive">
<a href="index.html" class="nav-link"><i data-feather="home"></i><span class="ml-2"></span> Dashboard</a>
</li>
<li>
<a href="lead.html" class="nav-link"><i data-feather="globe"></i><span class="ml-2"></span> Lead</a>
</li>
<li>
<a href="lead_status.html" class="nav-link"> <i data-feather="database"></i><span class="ml-2"></span> Lead
Status</a>
</li>
<li>
<a href="route.html" class="nav-link"><i data-feather="list"></i><span class="ml-2"></span> Route</a>
</li>
<li>
<a href="#homeSubmenu" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle"><i
data-feather="edit-2"></i><span class="ml-2"></span> Report <i class="material-icons float-right">
keyboard_arrow_down
</i></a>
<ul class="collapse list-unstyled" id="homeSubmenu">
<li>
<a href="lead_report.html"><i class="fas fa-caret-right"></i> Lead Report</a>
</li>
<li>
<a href="route_report.html"><i class="fas fa-caret-right"></i> Route Report</a>
</li>
</ul>
</li>
</ul>
</nav>
<!-- Right Sidebar end -->
<!-- Content start here -->
<div id="content">
<div class="container-fluid">
<div class="row mt-5">
<div id="chartContainer" style="height: 300px; width: 100%;"></div>
</div>
</div>
</div>
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<!-- /* Popper.JS */ -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"
integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ"
crossorigin="anonymous"></script>
<!-- /* Bootstrap JS */ -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"
integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm"
crossorigin="anonymous"></script>
<!-- /* jQuery Custom Scroller CDN */ -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/script.js"></script>
<script>
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer", {
animationEnabled: true,
theme: "light2", // "light1", "light2", "dark1", "dark2"
title: {
text: "No of Buses from each stop"
},
axisY: {
title: "No of Buses"
},
data: [{
type: "column",
dataPoints: [
{ y: 14, label: "Borivali to Malad" },
{ y: 20, label: "kandivali to Malad" },
{ y: 16, label: "Mira road to Malad" },
]
}]
});
chart.render();
}
</script>
</body>
</html>