()
| 715 | selected_changed() {} |
| 716 | |
| 717 | relayout() { |
| 718 | super.relayout(); |
| 719 | |
| 720 | this.adjust_rectangle(); |
| 721 | this.d3el |
| 722 | .select('.background') |
| 723 | .attr('width', this.width) |
| 724 | .attr('height', this.height); |
| 725 | |
| 726 | this.set_range([this.scale]); |
| 727 | this.brushes.forEach((brush) => { |
| 728 | brush.extent([ |
| 729 | [0, 0], |
| 730 | [this.width, this.height], |
| 731 | ]); |
| 732 | }); |
| 733 | this.syncModelToBrush(); |
| 734 | } |
| 735 | |
| 736 | private syncModelToBrush() { |
| 737 | // Move and redraw the brush selectors, preventing move events to be triggered |
nothing calls this directly
no test coverage detected