()
| 388 | } |
| 389 | |
| 390 | compute_dimensions_and_draw() { |
| 391 | this.set_area_dimensions(this.data.length); |
| 392 | this.update_plotarea_dimensions(); |
| 393 | this.draw_map(); |
| 394 | |
| 395 | this.clear_selected(); |
| 396 | this.apply_selected(); |
| 397 | |
| 398 | // when data is changed |
| 399 | this.fig_hover.selectAll('rect').remove(); |
| 400 | this.hide_tooltip(); |
| 401 | } |
| 402 | |
| 403 | update_default_tooltip() { |
| 404 | this.tooltip_fields = this.model.get('tooltip_fields'); |
no test coverage detected