Welcome to the WPF feedback portal. We’re happy you’re here! If you have feedback on how to improve the WPF, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Currently the only way to specify the sorting of columns/cards/swimlanes in the kanban board is to sort the items before binding to ItemsSource:
kanbanModels = kanbanModels.OrderBy(x => x.Category)
.ThenBy(x => x.Assignee)
.ThenBy(x => x.Title)
.ToList();