(model, style)
| 439 | } |
| 440 | |
| 441 | unhovered_style_updated(model, style) { |
| 442 | this.unhovered_style = style; |
| 443 | const hov_indices = this.hovered_index; |
| 444 | const unhovered_indices = hov_indices |
| 445 | ? _.range(this.model.mark_data.length).filter((index) => { |
| 446 | return hov_indices.indexOf(index) === -1; |
| 447 | }) |
| 448 | : []; |
| 449 | this.clear_style(model.previous('unhovered_style'), unhovered_indices); |
| 450 | this.style_updated(style, unhovered_indices); |
| 451 | } |
| 452 | |
| 453 | draw_legend(elem, x_disp, y_disp, inter_x_disp, inter_y_disp) { |
| 454 | this.legend_el = elem |
nothing calls this directly
no test coverage detected
searching dependent graphs…