(container)
| 1376 | |
| 1377 | class ProbabilityPanel { |
| 1378 | constructor(container) { |
| 1379 | this.container = container; |
| 1380 | this.rows = []; |
| 1381 | if (!this.container) { |
| 1382 | throw new Error("Vorhersage-Diagrammcontainer nicht gefunden."); |
| 1383 | } |
| 1384 | this.build(); |
| 1385 | } |
| 1386 | |
| 1387 | build() { |
| 1388 | this.container.innerHTML = ""; |