Unplanned
Last Updated: 18 Jun 2020 16:20 by ADMIN
ADMIN
Marin Bratanov
Created on: 03 May 2018 07:23
Category: PivotGrid
Type: Feature Request
2
Localization for the Summarize by settings dialog (the Sum, Count, Avg, etc.. aggregates)
The aggregates functions highlighted in the attached screenshots have common names that are used in the industry and as such they are not localized. This feature request is so that their names can be localized through global resx files along with other strings in the RadPivotGrid control.

In the meantime, you can use the ItemDataBound event to change cell texts based on your requirements. You can find similar examples here: https://demos.telerik.com/aspnet-ajax/pivotgrid/examples/appearance/conditionalformatting/defaultcs.aspx
For example, to change the Sum aggregate name in the column header, you can do this:
            else if (e.Cell is PivotGridColumnHeaderCell)
            {
                PivotGridColumnHeaderCell cell = e.Cell as PivotGridColumnHeaderCell;
                cell.Text = cell.Text.Replace("Sum ", "custom ");
2 comments
Imported User
Posted on: 03 May 2018 18:04
Hello,

Thank you Marin! It works.
Imported User
Posted on: 03 May 2018 14:50
deleted by Grein
Attached Files: