* Fix normalize when null values at edge of dataset
* Fix test with mismatched number of points
parsed = _parsed[i];
value = parsed[scale.axis];
otherValue = parsed[otherScale.axis];
- return (!isFinite(value) || !isFinite(otherValue) || otherMin > otherValue || otherMax < otherValue);
+ return !isFinite(value) || otherMin > otherValue || otherMax < otherValue;
}
for (i = 0; i < ilen; ++i) {
type: 'line',
data: {
labels: ['2017', '2019', '2020', '2025', '2042'],
- datasets: [{data: [0, 1, 2, 3, 4, 5], fill: false}]
+ datasets: [{data: [0, 1, 2, 3, 4], fill: false}]
},
options: {
scales: {