diff --git a/.DS_Store b/.DS_Store
deleted file mode 100644
index 15b9d56..0000000
Binary files a/.DS_Store and /dev/null differ
diff --git a/css/.DS_Store b/css/.DS_Store
deleted file mode 100644
index 599aa9f..0000000
Binary files a/css/.DS_Store and /dev/null differ
diff --git a/css/general.css b/css/general.css
index f87ca5a..3eea13b 100644
--- a/css/general.css
+++ b/css/general.css
@@ -1398,6 +1398,14 @@ section {
}
}
+#chart {
+ color: #000;
+}
+
+.apexcharts-legend-text {
+ color: #fff !important;
+}
+
.tooltip {
position: relative;
}
diff --git a/img/.DS_Store b/img/.DS_Store
deleted file mode 100644
index ffdd1bc..0000000
Binary files a/img/.DS_Store and /dev/null differ
diff --git a/index.html b/index.html
index bd6dd12..b197aed 100644
--- a/index.html
+++ b/index.html
@@ -16,7 +16,6 @@
Gilroy Hacks
-
diff --git a/js/general.js b/js/general.js
index 6679774..aa754e0 100644
--- a/js/general.js
+++ b/js/general.js
@@ -250,7 +250,7 @@ function notification(id) {
var options = {
series: [{
name: 'Idea',
- data: [7, 9, 6, 10, 14]
+ data: [7, 9, 6, 10, 14],
}, {
name: 'Implementation',
data: [11, 6, 11, 3, 9]
@@ -259,7 +259,7 @@ var options = {
data: [12, 7, 12, 11, 8]
}, {
name: 'Overall',
- data: [10, 6, 9, 7, 11]
+ data: [10, 6, 9, 7, 11],
}],
chart: {
type: 'bar',
@@ -283,10 +283,18 @@ var options = {
labels: {
formatter: function (val) {
return val + ""
+ },
+ style: {
+ colors: '#fff'
}
- }
+ },
},
yaxis: {
+ labels: {
+ style: {
+ colors: '#fff'
+ }
+ },
title: {
text: undefined
},
@@ -296,7 +304,8 @@ var options = {
formatter: function (val) {
return val + ""
}
- }
+ },
+ colors: ['#fff']
},
fill: {
opacity: 1
@@ -304,8 +313,8 @@ var options = {
legend: {
position: 'top',
horizontalAlign: 'left',
- offsetX: 40
- }
+ offsetX: 40,
+ },
};
var chart = new ApexCharts(document.querySelector("#chart"), options);