()
| 43 | |
| 44 | export class Boxplot extends Mark { |
| 45 | async render() { |
| 46 | const base_creation_promise = super.render.apply(this); |
| 47 | |
| 48 | this.selected_style = this.model.get('selected_style'); |
| 49 | this.unselected_style = this.model.get('unselected_style'); |
| 50 | |
| 51 | this.display_el_classes = ['box']; |
| 52 | |
| 53 | this.displayed.then(() => { |
| 54 | this.parent.tooltip_div.node().appendChild(this.tooltip_div.node()); |
| 55 | this.create_tooltip(); |
| 56 | }); |
| 57 | |
| 58 | await base_creation_promise; |
| 59 | |
| 60 | this.event_listeners = {}; |
| 61 | this.create_listeners(); |
| 62 | this.process_interactions(); |
| 63 | this.draw(); |
| 64 | } |
| 65 | |
| 66 | set_ranges() { |
| 67 | const xScale = this.scales.x; |
nothing calls this directly
no test coverage detected