Binds the labels and dots to the Megaplot scene.
()
| 500 | |
| 501 | /** Binds the labels and dots to the Megaplot scene. */ |
| 502 | private draw() { |
| 503 | this.selections.columnLabels?.bind(this.columns); |
| 504 | this.selections.rowLabels?.bind(this.rows); |
| 505 | this.selections.points?.bind(this.dots); |
| 506 | } |
| 507 | |
| 508 | /** Resets the scale of the Megaplot Scene. */ |
| 509 | private resetScale() { |