(raw, index)
| 101 | } |
| 102 | |
| 103 | parse(raw, index) { |
| 104 | const value = LinearScaleBase.prototype.parse.apply(this, [raw, index]); |
| 105 | if (value === 0) { |
| 106 | this._zero = true; |
| 107 | return undefined; |
| 108 | } |
| 109 | return isFinite(value) && value > 0 ? value : null; |
| 110 | } |
| 111 | |
| 112 | determineDataLimits() { |
| 113 | const {min, max} = this.getMinMax(true); |