Skip to content

Commit

Permalink
Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.…
Browse files Browse the repository at this point in the history
…18.3
  • Loading branch information
tfsbuild committed Dec 18, 2024
1 parent 4d1bfbb commit c456908
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions samples/grids/pivot-grid/features/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -63,22 +63,24 @@
pivotValue1.Member = "AmountofSale";
pivotValue1.DisplayName = "Amount of Sale";
pivotValue1.Enabled = true;
pivotValue1.Name = "pivotValue1";var SumOfSale = new IgbPivotAggregator();
SumOfSale.Key = "SUM";
SumOfSale.Label = "Sum of Sale";
SumOfSale.AggregatorScript = "PivotDataFlatAggregateSumSale";
SumOfSale.AggregatorName = PivotAggregationType.SUM;
SumOfSale.Name = "SumOfSale";var MinOfSale = new IgbPivotAggregator();
MinOfSale.Key = "MIN";
MinOfSale.Label = "Minimum of Sale";
MinOfSale.AggregatorScript = "PivotDataFlatAggregateMinSale";
MinOfSale.AggregatorName = PivotAggregationType.MIN;
MinOfSale.Name = "MinOfSale";var MaxOfSale = new IgbPivotAggregator();
MaxOfSale.Key = "MAX";
MaxOfSale.Label = "Maximum of Sale";
MaxOfSale.AggregatorName = PivotAggregationType.MAX;
MaxOfSale.AggregatorScript = "PivotDataFlatAggregateMaxSale";
MaxOfSale.Name = "MaxOfSale";pivotValue1.AggregateList = [SumOfSale,MinOfSale,MaxOfSale];
pivotValue1.Name = "pivotValue1";var pivotAggregator1 = new IgbPivotAggregator();
pivotAggregator1.Key = "SUM";
pivotAggregator1.Label = "Sum of Sale";
pivotAggregator1.AggregatorScript = "PivotDataFlatAggregateSumSale";
pivotAggregator1.Name = "pivotAggregator1";pivotValue1.Aggregate = pivotAggregator1;
var pivotAggregator2 = new IgbPivotAggregator();
pivotAggregator2.Key = "SUM";
pivotAggregator2.Label = "Sum of Sale";
pivotAggregator2.AggregatorScript = "PivotDataFlatAggregateSumSale";
pivotAggregator2.Name = "pivotAggregator2";var pivotAggregator3 = new IgbPivotAggregator();
pivotAggregator3.Key = "MIN";
pivotAggregator3.Label = "Minimum of Sale";
pivotAggregator3.AggregatorScript = "PivotDataFlatAggregateMinSale";
pivotAggregator3.Name = "pivotAggregator3";var pivotAggregator4 = new IgbPivotAggregator();
pivotAggregator4.Key = "MAX";
pivotAggregator4.Label = "Maximum of Sale";
pivotAggregator4.AggregatorScript = "PivotDataFlatAggregateMaxSale";
pivotAggregator4.Name = "pivotAggregator4";pivotValue1.AggregateList = [pivotAggregator2,pivotAggregator3,pivotAggregator4];
pivotConfiguration1.Values = [pivotValue1];

this._pivotConfiguration1 = pivotConfiguration1;
Expand Down

0 comments on commit c456908

Please sign in to comment.