* Returns a single value from the data. * * @param {number} row Physical row index. * @param {number} columnOrProp Visual column index or property. * @returns {*}
(row: number, columnOrProp: number | string)
| 325 | * @returns {*} |
| 326 | */ |
| 327 | getAtCell(row: number, columnOrProp: number | string): unknown { |
| 328 | const dataRow = this.modifyRowData(row); |
| 329 | |
| 330 | return this.getAtPhysicalCell(row, this.colToProp(columnOrProp) as number | string | DataAccessorFn, dataRow); |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * Returns source data by passed range. |
no test coverage detected