(plt: HttpgdPlot<string>)
| 622 | } |
| 623 | |
| 624 | protected updatePlot(plt: HttpgdPlot<string>): void { |
| 625 | const msg: UpdatePlotMessage = { |
| 626 | message: 'updatePlot', |
| 627 | plotId: plt.id, |
| 628 | svg: plt.data |
| 629 | }; |
| 630 | this.postWebviewMessage(msg); |
| 631 | } |
| 632 | |
| 633 | protected addPlot(plt: HttpgdPlot<string>): void { |
| 634 | const ejsData = this.makeEjsData(); |
no test coverage detected