()
| 78 | } |
| 79 | |
| 80 | set_positional_scales() { |
| 81 | this.listenTo(this.scales.column, 'domain_changed', () => { |
| 82 | if (!this.model.dirty) { |
| 83 | this.draw(); |
| 84 | } |
| 85 | }); |
| 86 | this.listenTo(this.scales.row, 'domain_changed', () => { |
| 87 | if (!this.model.dirty) { |
| 88 | this.draw(); |
| 89 | } |
| 90 | }); |
| 91 | } |
| 92 | |
| 93 | private expandScaleDomain( |
| 94 | scale, |