(id: HttpgdPlotId)
| 461 | this._hidePlot(id); |
| 462 | } |
| 463 | protected _hidePlot(id: HttpgdPlotId): void { |
| 464 | const msg: HidePlotMessage = { |
| 465 | message: 'hidePlot', |
| 466 | plotId: id |
| 467 | }; |
| 468 | this.postWebviewMessage(msg); |
| 469 | } |
| 470 | |
| 471 | public async closePlot(id?: HttpgdPlotId): Promise<void> { |
| 472 | id ??= this.activePlot; |
no test coverage detected