()
| 1194 | } |
| 1195 | |
| 1196 | remove() { |
| 1197 | if (this.mark_views !== undefined && this.mark_views !== null) { |
| 1198 | this.mark_views.remove(); |
| 1199 | } |
| 1200 | if (this.axis_views !== undefined && this.axis_views !== null) { |
| 1201 | this.axis_views.remove(); |
| 1202 | } |
| 1203 | if (this.tooltip_div !== undefined) { |
| 1204 | this.tooltip_div.remove(); |
| 1205 | } |
| 1206 | this.intersectObserver.disconnect(); |
| 1207 | this.resizeObserver.disconnect(); |
| 1208 | return super.remove.apply(this, arguments); |
| 1209 | } |
| 1210 | |
| 1211 | async get_svg() { |
| 1212 | // Returns the outer html of the figure svg |
no outgoing calls
no test coverage detected