DataTable scrollIntoView

I have a data table with more rows than can fit on the screen, so I have set overflowY to ‘auto’. In addition to that, i select incrementing rows in the table to show additional information on the page via callback based on the selected row. It works great so far.

When the incrementing of selected rows goes past the overflow though, the selected row is no longer visible and the table doesn’t ‘scroll down’. I’d like to programmatically call scrollIntoView in the callback so that I can recenter what is being displayed in the table, similar to this:

Is there any method to accomplish this in dash?

Thanks in advance