A possible workaround is to show and hide the columns.
foreach (GridViewColumn col in TestGridView.Columns)
{
bool visibility = col.IsVisible;
col.IsVisible = true;
col.IsVisible = visibility;
}
The fix for this issue will be available with the next LIB (version 2018.3.1112) expected on Monday, November 12.