-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchart.config.js
123 lines (106 loc) · 3.42 KB
/
chart.config.js
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
const fetchProjects = () => JSON.parse(localStorage.getItem('projects')) ?? []
const projects = fetchProjects()
const charts = {
budgetPerCategoryChart: document.getElementById('categoryChart'),
categoriesCountChart: document.getElementById('categoryCountChart'),
projectsGraphic: document.getElementById('projectsGraphic'),
}
//Budget per category chart
const categories = {};
projects.forEach(project => {
if (project.projectCategory in categories) {
categories[project.projectCategory] += project.projectBudget;
} else {
categories[project.projectCategory] = project.projectBudget;
}
});
const budgetPerCategoryChartLabels = Object.keys(categories);
const budgetPerCategoryChartData = Object.values(categories);
const totalBudget = budgetPerCategoryChartData.reduce((acc,curr)=>acc + curr,0)
const budgetsInPercentage = budgetPerCategoryChartLabels.map((label,index)=>{
const percentage = ((budgetPerCategoryChartData[index] / totalBudget) * 100).toFixed(2)
return `${label} (${percentage}%)`
})
const bCategoryChart = new Chart(charts.budgetPerCategoryChart, {
type: 'pie',
data: {
labels: budgetsInPercentage,
datasets: [{
data: budgetPerCategoryChartData,
backgroundColor: [
'#a61cdf',
'#181818',
'#ce85ff'
]
}]
},
});
//Categories Count Chart
const categoriesCount = {};
const totalProjects = projects.length
projects.forEach(project => {
if (project.projectCategory in categoriesCount) {
categoriesCount[project.projectCategory]++;
} else {
categoriesCount[project.projectCategory] = 1;
}
});
const categoryCountChartLabels = Object.keys(categoriesCount);
const categoryCountChartData = Object.values(categoriesCount);
const categoryCountInPercentage = Object.keys(categoriesCount).map(category=>{
const percentage = ((categoriesCount[category] / totalProjects) * 100).toFixed(2)
return `${category} (${percentage}%)`
})
const cCountChart = new Chart(charts.categoriesCountChart, {
type: 'doughnut',
data: {
labels: categoryCountInPercentage,
datasets: [{
label: 'Projects with this category',
data: categoryCountChartData,
backgroundColor: [
'#a61cdf',
'#181818',
'#ce85ff'
],
borderWidth: 1
}]
},
});
//Created Projects per Month Count Chart
const monthsCount = {};
projects.forEach(project => {
const month = new Date(project.projectDeadline).getMonth().toString()
if (month in monthsCount) {
monthsCount[month]++;
} else {
monthsCount[month] = 1;
}
});
const pCountChart = new Chart(charts.projectsGraphic,{
type: 'bar',
data: {
labels: ['January','February','March','April','May','June','July','August','September','October','November','December'],
datasets: [
{
label: 'Projects Created',
data: Object.values(monthsCount),
borderColor: '#212121',
backgroundColor: '#a61cdf',
stack: 'combined'
}
]},
options: {
plugins: {
title: {
display: true,
text: 'Number of Projects Created on Each Month'
}
},
scales: {
y: {
stacked: true
}
}
},
})