()
| 46 | } |
| 47 | |
| 48 | set_ranges() { |
| 49 | if (this.scales.x) { |
| 50 | const xRange = this.parent.padded_range('x', this.scales.x.model); |
| 51 | this.scales.x.setRange(xRange); |
| 52 | } |
| 53 | |
| 54 | if (this.scales.y) { |
| 55 | this.scales.y.setRange( |
| 56 | this.parent.padded_range('y', this.scales.y.model) |
| 57 | ); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | set_positional_scales() { |
| 62 | this.listenTo(this.scales.x, 'domain_changed', () => { |
no test coverage detected