Keep this as NaN so point._view.skip is set correctly

This commit is contained in:
Evert Timberg 2015-11-15 11:16:17 -05:00
parent 9c78de10ba
commit 045d8f6c2a

View File

@ -272,7 +272,7 @@
return index * angleMultiplier - (Math.PI / 2);
},
getDistanceFromCenterForValue: function(value) {
if (value === null || value === undefined || isNaN(value)) {
if (value === null) {
return 0; // null always in center
}