When I inspected for a scroll bar it pointed the element .x-table-container, tried to scroll with the following code, but it's not working, is there any other solution for this?
protected void DragAndDropToVertical(IWebElement webElement, int dragValue)
{
new Actions(Driver).DragAndDropToOffset(webElement, 0, dragValue).Build().Perform();
PauseExecution(200);
}