MCPcopy Index your code
hub / github.com/bqplot/bqplot / render

Method render

js/src/Boxplot.ts:45–64  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

43
44export 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;

Callers

nothing calls this directly

Calls 2

create_listenersMethod · 0.95
drawMethod · 0.95

Tested by

no test coverage detected