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

Function mouse_out

js/src/Mark.ts:539–553  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

537 }
538
539 mouse_out() {
540 if (this.model.get('enable_hover')) {
541 const el = d3.select(d3GetEvent().target);
542 if (this.is_hover_element(el)) {
543 const data: any = el.data()[0];
544 const hovered_data = this.model.get_data_dict(data, data.index);
545 // make tooltip invisible
546 this.hide_tooltip();
547 this.send({
548 event: 'hover',
549 point: hovered_data,
550 });
551 }
552 }
553 }
554
555 mouse_move() {
556 if (

Callers

nothing calls this directly

Calls 4

d3GetEventFunction · 0.90
hide_tooltipMethod · 0.80
sendMethod · 0.80
get_data_dictMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…