()
| 102 | } |
| 103 | |
| 104 | private hideImage() { |
| 105 | // Hide the image element |
| 106 | let el = <HTMLImageElement>this.node.querySelector(".plot-img"); |
| 107 | if (el !== null && el !== undefined) { |
| 108 | el.style.display = "none"; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | private showImage() { |
| 113 | // Show the image element |