()
| 112 | } |
| 113 | |
| 114 | update_offset() { |
| 115 | const offset_creation_promise = this.get_offset_promise(); |
| 116 | offset_creation_promise.then(() => { |
| 117 | this.set_scales_range(); |
| 118 | this.update_offset_scale_domain(); |
| 119 | this.g_axisline.attr('transform', this.get_axis_transform()); |
| 120 | this.update_grid_lines(); |
| 121 | }); |
| 122 | } |
| 123 | |
| 124 | update_display() { |
| 125 | this.g_axisline.remove(); |
nothing calls this directly
no test coverage detected