()
| 64 | } |
| 65 | |
| 66 | set_ranges() { |
| 67 | if (this.scales.row) { |
| 68 | this.scales.row.setRange( |
| 69 | this.parent.padded_range('y', this.scales.row.model) |
| 70 | ); |
| 71 | } |
| 72 | |
| 73 | if (this.scales.column) { |
| 74 | this.scales.column.setRange( |
| 75 | this.parent.padded_range('x', this.scales.column.model) |
| 76 | ); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | set_positional_scales() { |
| 81 | this.listenTo(this.scales.column, 'domain_changed', () => { |
no test coverage detected