()
| 181 | } |
| 182 | |
| 183 | update_xscale_domain() { |
| 184 | // When the domain of the scale is updated, the domain of the scale |
| 185 | // for the selector must be expanded to account for the padding. |
| 186 | const initial_range = this.parent.padded_range('x', this.x_scale.model); |
| 187 | const target_range = this.parent.range('x'); |
| 188 | this.x_scale.expandDomain(initial_range, target_range); |
| 189 | } |
| 190 | |
| 191 | update_yscale_domain() { |
| 192 | // When the domain of the scale is updated, the domain of the scale |
nothing calls this directly
no test coverage detected
searching dependent graphs…