()
| 68 | } |
| 69 | |
| 70 | set_ranges() { |
| 71 | if (this.scales.x) { |
| 72 | this.scales.x.setRange( |
| 73 | this.parent.padded_range('x', this.scales.x.model) |
| 74 | ); |
| 75 | } |
| 76 | |
| 77 | if (this.scales.y) { |
| 78 | this.scales.y.setRange( |
| 79 | this.parent.padded_range('y', this.scales.y.model) |
| 80 | ); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | set_positional_scales() { |
| 85 | // If no scale for "x" or "y" is specified, figure scales are used. |
no test coverage detected