()
| 86 | } |
| 87 | |
| 88 | private hideGraph() { |
| 89 | // Hide the graph if there is one |
| 90 | let el = <HTMLDivElement>this.node.querySelector(".plot-container"); |
| 91 | if (el !== null && el !== undefined) { |
| 92 | el.style.display = "none"; |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | private showGraph() { |
| 97 | // Show the graph if there is one |