Sorting in ASP.NET CORE Pivot Table Component

21 Dec 202224 minutes to read

Member Sorting

Allows to order field members in rows and columns either in ascending or descending order. By default, field members in rows and columns are in ascending order.

Member sorting can be enabled by setting the enableSorting property in e-datasourcesettings tag to true. After enabling this API, click the sort icon besides each field in row or column axis, available in field list or grouping bar UI for re-arranging members either in ascending or descending order.

NOTE

By default the enableSorting property in e-datasourcesettings tag set as true. If we set it as false, then the field members arrange in pivot table as its data source order. And, the sort icons in grouping bar and field list buttons will be removed.

output


output


output

Member sorting can also be configured using the e-sortsettings tag through code behind, during initial rendering. The settings required to sort are:

  • name: It allows to set the field name.
  • order: It allows to set the sort direction either to ascending or descending of the respective field.

NOTE

By default the order property in the e-sortsettings tag set as Ascending. Meanwhile, we can arrange the field members as its order in data source by setting it as None where the sort icons in grouping bar and field list buttons for the corresponding field will be removed.

@using Syncfusion.EJ2.PivotView

<ejs-pivotview id="PivotView" height="300">
    <e-datasourcesettings dataSource="@ViewBag.DataSource" expandAll="false">
        <e-sortsettings>
            <e-field name="Country" order="Descending"></e-field>
        </e-sortsettings>
        <e-rows>
            <e-field name="Country"></e-field>
            <e-field name="Products"></e-field>
        </e-rows>
        <e-columns>
            <e-field name="Year" caption="Year"></e-field>
            <e-field name="Quarter"></e-field>
        </e-columns>
        <e-values>
            <e-field name="Sold" caption="Units Sold"></e-field>
            <e-field name="Amount" caption="Sold Amount"></e-field>
        </e-values>
    </e-datasourcesettings>
</ejs-pivotview>
public ActionResult Index()
{
    var data = GetPivotData();
    ViewBag.DataSource = data;
    return View();
}

Alphanumeric Sorting

Usually string sorting is applied to field members even if it starts with numbers. But this kind of field members can also be sorted on the basis of numbers that are placed at the beginning of the member name. This can be achieved by setting the dataType property as number to the desired field.

<ejs-pivotview id="pivotview"  width="100%" height="300"  showGroupingBar="true">
    <e-datasourcesettings dataSource="@ViewBag.DataSource" >
        <e-formatsettings>
            <e-field name="Amount" format="C0" maximumSignificantDigits="10" minimumSignificantDigits="1"></e-field>
        </e-formatsettings>
        <e-rows>
            <e-field name="ProductID" dataType="number"></e-field>
        </e-rows>
        <e-columns>
            <e-field name="Country"></e-field>
        </e-columns>
        <e-values>
            <e-field name="Sold" caption="Units Sold"></e-field>
            <e-field name="Amount" caption="Sold Amount"></e-field>
        </e-values>
    </e-datasourcesettings>
    <e-gridSettings columnWidth="140"></e-gridSettings>
</ejs-pivotview>
public ActionResult Index()
{
    var data = GetPivotData();
    ViewBag.DataSource = data;
    return View();
}

public List<PivotData> GetPivotData()
{
    List<PivotData> pivotData = new List<PivotData>();
    pivotData.Add(new PivotData { ProductID = "618-XW",  Country = "Canada", Sold = 90, Amount = 9219069});
    pivotData.Add(new PivotData { ProductID = "1111-GQ", Sold = 37, Amount = 1571126,  Country = "Australia" }); 
    pivotData.Add(new PivotData { ProductID = "330-BR", Sold = 31, Amount = 9523258,  Country = "Germany" }); 
    pivotData.Add(new PivotData { ProductID = "1035-VC", Sold = 86, Amount = 1004572,  Country = "United States" }); 
    pivotData.Add(new PivotData { ProductID = "36-SW", Sold = 73, Amount = 4532163,  Country = "United Kingdom" }); 
    pivotData.Add(new PivotData { ProductID = "71-AJ", Sold = 45, Amount = 1916052,  Country = "Germany" }); 
    pivotData.Add(new PivotData { ProductID = "980-PP", Sold = 85, Amount = 6586156,  Country = "Canada" }); 
    pivotData.Add(new PivotData { ProductID = "209-FB", Sold = 51, Amount = 6348087,  Country = "Australia" }); 
    pivotData.Add(new PivotData { ProductID = "428-PL", Sold = 65, Amount = 1365854,  Country = "Germany" }); 
    pivotData.Add(new PivotData { ProductID = "618-XW", Sold = 81, Amount = 6461768,  Country = "United States" }); 
    pivotData.Add(new PivotData { ProductID = "1111-GQ", Sold = 33, Amount = 6181560,  Country = "United Kingdom" }); 
    pivotData.Add(new PivotData { ProductID = "330-BR", Sold = 17, Amount = 611364,  Country = "Germany" }); 
    pivotData.Add(new PivotData { ProductID = "1035-VC", Sold = 41, Amount = 3688930,  Country = "Canada" }); 
    pivotData.Add(new PivotData { ProductID = "36-SW", Sold = 51, Amount = 4648920,  Country = "Australia" }); 
    pivotData.Add(new PivotData { ProductID = "71-AJ", Sold = 56, Amount = 4579862,  Country = "Germany" }); 
    pivotData.Add(new PivotData { ProductID = "980-PP", Sold = 25, Amount = 1249117,  Country = "United States" }); 
    pivotData.Add(new PivotData { ProductID = "209-FB", Sold = 60, Amount = 9603891,  Country = "United Kingdom" }); 
    pivotData.Add(new PivotData { ProductID = "428-PL", Sold = 31, Amount = 9548655,  Country = "Canada" }); 
    pivotData.Add(new PivotData { ProductID = "618-XW", Sold = 93, Amount = 7496742,  Country = "Australia" }); 
    pivotData.Add(new PivotData { ProductID = "1111-GQ", Sold = 62, Amount = 8692814,  Country = "Germany" }); 
    pivotData.Add(new PivotData { ProductID = "330-BR", Sold = 22, Amount = 4789234,  Country = "United States" }); 
    pivotData.Add(new PivotData { ProductID = "1035-VC", Sold = 61, Amount = 7927531,  Country = "United Kingdom" }); 
    pivotData.Add(new PivotData { ProductID = "36-SW", Sold = 68, Amount = 5440025,  Country = "Germany" }); 
    pivotData.Add(new PivotData { ProductID = "71-AJ", Sold = 87, Amount = 8097913,  Country = "Canada" }); 
    pivotData.Add(new PivotData { ProductID = "980-PP", Sold = 87, Amount = 1809071,  Country = "Australia" });
    pivotData.Add(new PivotData { ProductID = "209-FB", Sold = 96, Amount = 9893092,  Country = "Germany" });
    pivotData.Add(new PivotData { ProductID = "428-PL", Sold = 22, Amount = 8136252,  Country = "United States" }); 
    pivotData.Add(new PivotData { ProductID = "618-XW", Sold = 29, Amount = 9190577,  Country = "United Kingdom" }); 
    pivotData.Add(new PivotData { ProductID = "1111-GQ", Sold = 85, Amount = 5410172,  Country = "Germany" });
    return pivotData;
}

public class PivotData
{
    public int Sold { get; set; }
    public double Amount { get; set; }
    public string Country { get; set; }
    public string ProductID { get; set; }
}

output

Custom Sorting

Allows to sort field headers (aka, members) in rows and columns based on user-defined order. This can be configured mainly using the membersOrder in the e-sortsettings through code behind, during initial rendering. The other settings required to sort are:

  • name : It allows to set the field name.
  • membersOrder : It holds an array of headers in the order specified by the user.
  • order : It allows to specify whether the array of headers should be sorted ascending or descending.
@using Syncfusion.EJ2.PivotView

<ejs-pivotview id="PivotView" height="300" showGroupingBar="true">
    <e-datasourcesettings dataSource="@ViewBag.DataSource" expandAll="false">
        <e-sortsettings>
            <e-field name="Country" order="Ascending" membersOrder="@ViewBag.membersOrder"></e-field>
            <e-field name="Year" order="Descending" membersOrder="@ViewBag.membersOrder_1"></e-field>
        </e-sortsettings>
        <e-rows>
            <e-field name="Country"></e-field>
            <e-field name="Products"></e-field>
        </e-rows>
        <e-columns>
            <e-field name="Year" caption="Production Year"></e-field>
            <e-field name="Quarter"></e-field>
        </e-columns>
        <e-values>
            <e-field name="Sold" caption="Units Sold"></e-field>
            <e-field name="Amount" caption="Sold Amount"></e-field>
        </e-values>
    </e-datasourcesettings>
</ejs-pivotview>
public ActionResult Index()
{
    var data = GetPivotData();
    ViewBag.DataSource = data;
    ViewBag.membersOrder = new string[] { "United Kingdom", "France" };
    ViewBag.membersOrder_1 = new string[] { "FY 2015","FY 2017" };
    return View();
}

output

Value Sorting

NOTE

This property is applicable only for relational data source.

Allows to sort individual value field and its aggregated values either in row or column axis in both ascending and descending order. It can been enabled by setting the enableValueSorting property in ejs-pivotview tag to true. On enabling, end user can sort the values by directly clicking the value field header positioned either in row or column axis of the pivot table component.

The value sorting can also be configured using the e-valuesortsettings option through code behind. The settings required to sort value fields are:

  • headerText: It allows to set the header names with delimiters, that is used for value sorting. The header names are arranged from Level 1 to Level N, down the hierarchy with a delimiter for better specification.
  • headerDelimiter: It allows to set the delimiters string to separate the header text between levels.
  • sortOrder: It allows to set the sort direction of the value field.

NOTE

Value fields are set to the column axis by default. In such cases, the value sorting applied will have an effect on the column alone. You need to place the value fields in the row axis to do so in row wise. For more information, refer here.

<ejs-pivotview id="PivotView" height="300" enableValueSorting="true">
    <e-datasourcesettings dataSource="@ViewBag.DataSource" expandAll="false">
        <e-valuesortsettings headerText="FY 2015##Sold Amount" headerDelimiter="##" sortOrder="Descending"></e-valuesortsettings>
        <e-rows>
            <e-field name="Country"></e-field>
            <e-field name="Products"></e-field>
        </e-rows>
        <e-columns>
            <e-field name="Year" caption="Year"></e-field>
            <e-field name="Quarter"></e-field>
        </e-columns>
        <e-values>
            <e-field name="Sold" caption="Units Sold"></e-field>
            <e-field name="Amount" caption="Sold Amount"></e-field>
        </e-values>
    </e-datasourcesettings>
</ejs-pivotview>
public ActionResult Index()
{
    var data = GetPivotData();
    ViewBag.DataSource = data;
    return View();
}

output

Event

OnHeadersSort

The event OnHeadersSort triggers when clicking the value sort icon or the sort icon in the field button, which is present in both grouping bar and field list UI. This allows user to identify the current action being performed at runtime. It has the following parameters:

  • fieldName: It holds the field name where the sort settings applied.

  • sortOrder: It holds the current sort order of the field.

  • members: It holds the sorted headers according to the specified sort order.

  • levelName: It holds the specific field’s unique level name. Note: This option is applicable only for OLAP data.

  • isOrderChanged: By setting this boolean property to true, it allows to display the modified members order.

<ejs-pivotview id="PivotView" height="300" showGroupingBar="true" onHeadersSort="onHeadersSort">
    <e-datasourcesettings dataSource="@ViewBag.DataSource" expandAll="false" enableSorting="true">
        <e-rows>
            <e-field name="Country"></e-field>
            <e-field name="Products"></e-field>
        </e-rows>
        <e-columns>
            <e-field name="Year" caption="Production Year"></e-field>
            <e-field name="Quarter"></e-field>
        </e-columns>
        <e-values>
            <e-field name="Sold" caption="Units Sold"></e-field>
            <e-field name="Amount" caption="Sold Amount"></e-field>
        </e-values>
    </e-datasourcesettings>
</ejs-pivotview>

<script>
    function onHeadersSort(args) {
        if (args.fieldName == 'Country') {
            args.members = ['United Kingdom', 'Germany'];
            args.IsOrderChanged = true;
        }
        if (args.fieldName == 'Year') {
            args.members = ['FY 2017', 'FY 2015'];
            args.IsOrderChanged = true;
        }
    }
</script>
public ActionResult Index()
{
    var data = GetPivotData();
    ViewBag.DataSource = data;
    return View();
}

output

ActionBegin

The event actionBegin triggers when clicking the value sort icon or the sort icon in the field button, which is present in both grouping bar and field list UI. This allows user to identify the current action being performed at runtime. It has the following parameters:

  • dataSourceSettings: It holds the current data source settings such as input data source, rows, columns, values, filters, format settings and so on.

  • actionName: It holds the name of the current action began. The following are the UI actions and their names:

Action Action Name
Sort field Sort field
Value sort icon Sort value
  • fieldInfo: It holds the selected field information.

NOTE

This option is applicable only when the field based UI actions are performed such as filtering, sorting, removing field from grouping bar, editing and aggregation type change.

  • cancel: It allows user to restrict the current action.

In the below sample, sort action can be restricted by setting the args.cancel option to true in the actionBegin event.

<ejs-pivotview id="PivotView" height="300" showGroupingBar="true" actionBegin="actionBegin">
    <e-datasourcesettings dataSource="@ViewBag.DataSource" expandAll="false" enableSorting="true">
        <e-rows>
            <e-field name="Country"></e-field>
            <e-field name="Products"></e-field>
        </e-rows>
        <e-columns>
            <e-field name="Year" caption="Year"></e-field>
            <e-field name="Quarter"></e-field>
        </e-columns>
        <e-values>
            <e-field name="Sold" caption="Units Sold" type="DifferenceFrom" baseField="Country" baseItem="France"></e-field>
            <e-field name="Amount" caption="Sold Amount" type="Min"></e-field>
        </e-values>
    </e-datasourcesettings>
</ejs-pivotview>

<script>
    function actionBegin(args) {
        if (args.actionName == 'Sort field' || args.actionName == 'Sort value') {
            args.cancel = true;
        }
    }
</script>
public ActionResult Index()
{
    var data = GetPivotData();
    ViewBag.DataSource = data;
    return View();
}

ActionComplete

The event actionComplete triggers when the UI actions such as value sorting or sorting via the field button, which is present in both grouping bar and field list UI, is completed. This allows user to identify the current UI actions being completed at runtime. It has the following parameters:

  • dataSourceSettings: It holds the current data source settings such as input data source, rows, columns, values, filters, format settings and so on.

  • actionName: It holds the name of the current action completed. The following are the UI actions and their names:

Action Action Name
Sort field Field sorted
Value sort icon Value sorted
  • fieldInfo: It holds the selected field information.

NOTE

This option is applicable only when the field based UI actions are performed such as filtering, sorting, removing field from grouping bar, editing and aggregation type change.

  • actionInfo: It holds the unique information about the current UI action. For example, if sorting is completed, the event argument contains information such as sort order and the field name.
<ejs-pivotview id="PivotView" height="300" showGroupingBar="true" actionComplete="actionComplete">
    <e-datasourcesettings dataSource="@ViewBag.DataSource" expandAll="false" enableSorting="true">
        <e-rows>
            <e-field name="Country"></e-field>
            <e-field name="Products"></e-field>
        </e-rows>
        <e-columns>
            <e-field name="Year" caption="Year"></e-field>
            <e-field name="Quarter"></e-field>
        </e-columns>
        <e-values>
            <e-field name="Sold" caption="Units Sold" type="DifferenceFrom" baseField="Country" baseItem="France"></e-field>
            <e-field name="Amount" caption="Sold Amount" type="Min"></e-field>
        </e-values>
    </e-datasourcesettings>
</ejs-pivotview>

<script>
    function actionComplete(args) {
        if (args.actionName == 'Field sorted' || args.actionName == 'Value sorted') {
            // Triggers when the sort action is completed.
        }
    }
</script>
public ActionResult Index()
{
    var data = GetPivotData();
    ViewBag.DataSource = data;
    return View();
}

ActionFailure

The event actionFailure triggers when the current UI action fails to achieve the desired result. It has the following parameters:

  • actionName: It holds the name of the current action failed. The following are the UI actions and their names:
Action Action Name
Sort field Sort field
Value sort icon Sort value
  • errorInfo: It holds the error information of the current UI action.
<ejs-pivotview id="PivotView" height="300" showGroupingBar="true" actionFailure="actionFailure">
    <e-datasourcesettings dataSource="@ViewBag.DataSource" expandAll="false" enableSorting="true">
        <e-rows>
            <e-field name="Country"></e-field>
            <e-field name="Products"></e-field>
        </e-rows>
        <e-columns>
            <e-field name="Year" caption="Year"></e-field>
            <e-field name="Quarter"></e-field>
        </e-columns>
        <e-values>
            <e-field name="Sold" caption="Units Sold" type="DifferenceFrom" baseField="Country" baseItem="France"></e-field>
            <e-field name="Amount" caption="Sold Amount" type="Min"></e-field>
        </e-values>
    </e-datasourcesettings>
</ejs-pivotview>

<script>
    function actionFailure(args) {
        if (args.actionName == 'Sort field' || args.actionName == 'Sort value') {
            // Triggers when the current UI action fails to achieve the desired result.
        }
    }
</script>
public ActionResult Index()
{
    var data = GetPivotData();
    ViewBag.DataSource = data;
    return View();
}