* Clears the data array.
()
| 1018 | * Clears the data array. |
| 1019 | */ |
| 1020 | clear() { |
| 1021 | for (let r = 0; r < this.hot!.countSourceRows(); r++) { |
| 1022 | for (let c = 0; c < this.hot!.countCols(); c++) { |
| 1023 | this.set(r, this.colToProp(c), ''); |
| 1024 | } |
| 1025 | } |
| 1026 | } |
| 1027 | |
| 1028 | /** |
| 1029 | * Get data length. |
no test coverage detected