()
| 65 | } |
| 66 | |
| 67 | set_positional_scales(): void { |
| 68 | const xScale = this.scales.x, |
| 69 | yScale = this.scales.y; |
| 70 | this.listenTo(xScale, 'domain_changed', function () { |
| 71 | if (!this.model.dirty) { |
| 72 | this.update_line_xy(); |
| 73 | } |
| 74 | }); |
| 75 | this.listenTo(yScale, 'domain_changed', function () { |
| 76 | if (!this.model.dirty) { |
| 77 | this.update_line_xy(); |
| 78 | } |
| 79 | }); |
| 80 | } |
| 81 | |
| 82 | initialize_additional_scales(): void { |
| 83 | const colorScale = this.scales.color; |
nothing calls this directly
no test coverage detected