(colors)
| 31 | } |
| 32 | |
| 33 | set colorKeys(colors) { |
| 34 | this._colorKeys = colors; |
| 35 | this._colors = null; |
| 36 | this._colorsReversed = null; |
| 37 | this._colors = this._createColorScale(); |
| 38 | this._luminosities = this._getLuminosities(); |
| 39 | this._domains = this._getDomains(); |
| 40 | } |
| 41 | |
| 42 | get colorKeys() { |
| 43 | return this._colorKeys; |
nothing calls this directly
no test coverage detected