(shift)
| 94 | } |
| 95 | |
| 96 | set shift(shift) { |
| 97 | this._shift = Number(shift); |
| 98 | this._colors = null; |
| 99 | this._colorsReversed = null; |
| 100 | this._colors = this._createColorScale(); |
| 101 | this._domains = this._getDomains(); |
| 102 | } |
| 103 | |
| 104 | get shift() { |
| 105 | return Number(this._shift); |
nothing calls this directly
no test coverage detected