(png_data: string)
| 80 | } |
| 81 | |
| 82 | private updateImage(png_data: string) { |
| 83 | this.hideGraph(); |
| 84 | this._img_el.src = "data:image/png;base64," + <string>png_data; |
| 85 | this.showImage(); |
| 86 | } |
| 87 | |
| 88 | private hideGraph() { |
| 89 | // Hide the graph if there is one |
no test coverage detected