()
| 51 | } |
| 52 | |
| 53 | private setScaleOrientation(): void { |
| 54 | // TODO: we should probably use this.model.get("orientation")? |
| 55 | // var orient = this.model.get("orientation"); |
| 56 | this.domScale = this.scales.x; //(orient === "vertical") ? this.scales.x : this.scales.y; |
| 57 | this.rangeScale = this.scales.y; //(orient === "vertical") ? this.scales.y : this.scales.x; |
| 58 | } |
| 59 | |
| 60 | set_ranges(): void { |
| 61 | const orient = this.model.get('orientation'); |
no outgoing calls
no test coverage detected