We've discovered when you add too many items to the KanBan control, it just hangs. In our case this is about at 400 items. In order to alleviate this, we've been trying to combine the KanBan with the SfDataPager control, however doing this, the Kanban control never populates. Any ideas on solving either problem? This is also on a SfBackdropPage
<kan:SfKanban Grid.Row="1" AutoGenerateColumns="False" x:Name="kanban"
HorizontalOptions="Fill" VerticalOptions="FillAndExpand"
CardTemplate="{StaticResource KanBanTemplateSelector}"
ItemsSource="{Binding PagedSource, Source={x:Reference dataPager}}"
>
<kan:KanbanColumnCollection>
<kan:KanbanColumn x:Name="pendingColumn" Title="Pending"/>
<kan:KanbanColumn x:Name="makeContactColumn" Title="Make Contact" />
<kan:KanbanColumn x:Name="qualifyColumn" Title="Qualify"/>
</kan:KanbanColumnCollection>
</kan:SfKanban>
<sfDataPager:SfDataPager x:Name="dataPager"
PageSize="200"
NumericButtonsGenerateMode="Auto"
Source="{Binding FilteredCards}">
</sfDataPager:SfDataPager>