RadzenDataGrid clear sorting icon

How to clear sorting icon on RadzenDataGridColumn? Currently I've use this code but not work.

foreach (var col in grid0.ColumnsCollection)
{
col.SortOrder = null;
}

I've found a solution. by using the following command
grid0.Reset(true, true);

Thanks Radzen