Skip to content

UG content for asynchronous scrolling support #3335

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions MAUI/DataGrid/performance.md
Original file line number Diff line number Diff line change
@@ -99,3 +99,25 @@ public class ViewModel
}
{% endhighlight %}
{% endtabs %}

## Asynchronous Scrolling

The DataGrid provides support for asynchronous scrolling to enhance scrolling performance during large scroll jumps, especially on the Windows platform.

When the `AllowAsyncScrolling` property is enabled, the DataGrid renders content asynchronously while scrolling rapidly. This approach improves the perceived performance by reducing UI thread blocking and delivering smoother scrolling behavior.

By default, the `AllowAsyncScrolling` property is set to `false`. To improve scrolling performance, set this property to `true`.

{% tabs %}
{% highlight xaml %}
<syncfusion:SfDataGrid x:Name="dataGrid"
ItemsSource="{Binding EmployeeDetails}"
AllowAsyncScrolling="True"/>
{% endhighlight %}

{% highlight c# %}
dataGrid.AllowAsyncScrolling = true;
{% endhighlight %}
{% endtabs %}

N> Asynchronous scrolling is supported for all column types only on the Windows platform.