prevent undefined/null values breaking graphs or scales

This commit is contained in:
Nick Krecklow
2020-06-12 18:59:59 -05:00
parent 5b6d65e1c9
commit 7313971871
3 changed files with 12 additions and 7 deletions

View File

@ -26,7 +26,7 @@ export class RelativeScale {
}
static scaleMatrix (data, tickCount, maxFactor) {
const max = Math.max(...data.flat())
const max = Math.max(...data.flat().filter(val => val !== null))
return RelativeScale.scale([0, RelativeScale.isFiniteOrZero(max)], tickCount, maxFactor)
}
@ -46,8 +46,8 @@ export class RelativeScale {
max: 0
}
} else {
const min = Math.min(...data)
const max = Math.max(...data)
const min = Math.min(...data.filter(val => val !== null))
const max = Math.max(...data.filter(val => val !== null))
return {
min: RelativeScale.isFiniteOrZero(min),