in afterOnCellMouseOver
-Event I can get the screencoordinates of a cell.
afterOnCellMouseOver = async (event, coords, TD) => {
this.cellinfoleft = event.clientX - event.offsetX + 'px';
this.cellinfotop = event.clientY - event.offsetY - 50 + 'px';
}
Is it possible to get it in general of a cell? e.g. on afterOnCellChange
-Event?