The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ADAdministrator Syncfusion Team August 6, 2003 07:25 AM UTC
There is no UI for multicolumn sorts, but if your GridDataBoundGrid's DataSource is a DataTable, you can use the Sort property of DataTable's DefaultView to sort by multiple columns.
DataTable dt = (DataTable) grid.DataSource;
dt.DefaultView.Sort = "State, ZipCode DESC";