-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc.html
90 lines (69 loc) · 3.45 KB
/
c.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
<style>
.vertical-menu {
float:right;
margin-top: -250px;
width: 320px;
}
.vertical-menu a {
background-color: #eee;
color: black;
display: block;
padding: 15px;
text-decoration: none;
}
.vertical-menu a:hover {
background-color: #ccc;
}
.vertical-menu a.active {
background-color: #556B2F;
color: white;
}
</style>
</head>
<body>
<div id="chartContainer" style="height: 300px; width: 65%;margin-top: 80px;"></div>
<script>
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer", {
animationEnabled: true,
theme: "light1",
title: {
text: "Performance Rate In 2020,June month"
},
axisY: {
title: "Growth Rate (in %)",
suffix: "%",
includeZero: false
},
axisX: {
title: "Performance"
},
data: [{
type: "column",
yValueFormatString: "#,##0.0#\"%\"",
dataPoints: [
{ label: "Individual Performance", y: 10.1 },
{ label: "Team Performance", y: 8.0 },
{ label: "Indi+Team Perfor", y: 9.0 },
]
}]
});
chart.render();
}
</script>
<div class="vertical-menu">
<a href="#" class="active">Name C</a>
<a href="#">Id 756</a>
<a href="#">Post HR</a>
<a href="#">Current Salary 60,000tk</a>
<a href="#">Due Holidays In Month 1days</a>
<a href="#">Pending Tasks 3</a>
<a href="#">Completed Tasks 0</a>
</div>
</body>
</html>