RadzenDataGrid - Scrollbar

Hi, Is it possible to make the scrollbar not to scroll automatically when the new entries come in at the top. The scrollbar should stay at the data where the user is scrolled to even more data comes in.

For example:
private void OnTimer_Elapsed(object? sender, ElapsedEventArgs e)
{
InsertMoreData();
myGrid.Reload();
}

async protected override Task OnInitializedAsync()
{
dataToDisplay = myclass.Shared.Data.SampleData;
timer = new Timer();
timer.Interval = 3000;
timer.Elapsed += OnTimer_Elapsed;
timer.Enabled = true;
await base.OnInitializedAsync();
}

protected void InsertMoreData()
{
Story story = new Story { Time = DateTime.Now, Id = "AM-" + Counter, Content = "Test " + Counter };
dataToDisplay.Insert(0, story);
normalCount = dataToDisplay .Count;
Counter++;
}

Does anyone have the similar scenario to handle? The scrollbar should not scroll automatically when more rows are added to the top of the grid. The scrollbar should stay in the position where the user left the scrollbar.

Example, say the grid have 10 rows and the user scroll and leave the scrollbar at the begining of the 5th row. The scrollbar should keep this position even if the more rows of data added to the top of the grid.