Changed chart styles

This commit is contained in:
James Dinh 2022-08-29 15:21:15 -07:00
parent 5b343bb804
commit 15ce401cba
6 changed files with 8 additions and 7 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

BIN
css/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -1398,14 +1398,10 @@ section {
} }
} }
#chart { #chart .apexcharts-tooltip {
color: #000; color: #000;
} }
.apexcharts-legend-text, .apexcharts-title-text {
color: #fff !important;
}
.tooltip { .tooltip {
position: relative; position: relative;
} }

BIN
img/.DS_Store vendored Normal file

Binary file not shown.

BIN
js/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -276,7 +276,10 @@ var options = {
colors: ['#fff'] colors: ['#fff']
}, },
title: { title: {
text: 'Team Scores' text: 'Team Scores',
style: {
color: '#fff'
}
}, },
xaxis: { xaxis: {
categories: ['Team 2', 'Team 3', 'Team 4', 'Team 6', 'Team 7'], categories: ['Team 2', 'Team 3', 'Team 4', 'Team 6', 'Team 7'],
@ -305,7 +308,6 @@ var options = {
return val + "" return val + ""
} }
}, },
colors: ['#000']
}, },
fill: { fill: {
opacity: 1 opacity: 1
@ -314,6 +316,9 @@ var options = {
position: 'top', position: 'top',
horizontalAlign: 'left', horizontalAlign: 'left',
offsetX: 40, offsetX: 40,
labels: {
colors: '#fff',
},
}, },
}; };