()
| 59 | } |
| 60 | |
| 61 | set_positional_scales() { |
| 62 | this.listenTo(this.scales.x, 'domain_changed', () => { |
| 63 | if (!this.model.dirty) { |
| 64 | this.draw(); |
| 65 | } |
| 66 | }); |
| 67 | this.listenTo(this.scales.y, 'domain_changed', () => { |
| 68 | if (!this.model.dirty) { |
| 69 | this.draw(); |
| 70 | } |
| 71 | }); |
| 72 | } |
| 73 | |
| 74 | initialize_additional_scales() { |
| 75 | if (this.scales.color) { |