update/remove combat rating graph max+min

This commit is contained in:
SowinskiBraeden committed 2023-11-09 23:02:06 -08:00
1 parent e2d4f321da
commit 8fcd7196f8
3 files changed
+5 -5

No files matched your search

+2 -2
View File
@@ -109,8 +109,8 @@ module.exports = {
yAxes: [{ yAxes: [{
ticks: { ticks: {
fontStyle: 'bold', fontStyle: 'bold',
max: Math.round(dataMax / 10) * 10 + 10, // max: Math.round(dataMax / 10) * 10 + 10,
min: Math.round(dataMin / 10) * 10, // min: Math.round(dataMin / 10) * 10,
}, },
}], }],
}, },
+2 -2
View File
@@ -265,8 +265,8 @@ module.exports = {
yAxes: [{ yAxes: [{
ticks: { ticks: {
fontStyle: 'bold', fontStyle: 'bold',
min: Math.round(Math.min(...data)/10)*10 - 10, // min: Math.round(Math.min(...data)/10)*10 - 10,
max: Math.round(Math.max(...data)/10)*10 + 10, // max: Math.round(Math.max(...data)/10)*10 + 10,
}, },
}], }],
xAxes: [{ ticks: { fontStyle: 'bold' } }], xAxes: [{ ticks: { fontStyle: 'bold' } }],
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "dayzr-bot", "name": "dayzr-bot",
"version": "12.4.5", "version": "12.4.6",
"description": "A General Purpose Discord Bot for DayZ Nitrado Servers.", "description": "A General Purpose Discord Bot for DayZ Nitrado Servers.",
"main": "index.js", "main": "index.js",
"nodemonConfig": { "nodemonConfig": {