()
| 209 | } |
| 210 | |
| 211 | adjust_rectangle() { |
| 212 | if (this.model.get('orientation') == 'vertical') { |
| 213 | this.d3el.selectAll('rect').attr('x', 0).attr('width', this.width); |
| 214 | } else { |
| 215 | this.d3el.selectAll('rect').attr('y', 0).attr('height', this.height); |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | freeze_but_move: boolean; |
| 220 | freeze_dont_move: boolean; |