Skip to content

Commit

Permalink
Merge pull request #707 from IgniteUI/mdd-fix-spelling
Browse files Browse the repository at this point in the history
Update index.tsx
  • Loading branch information
IGvaleries authored Dec 17, 2024
2 parents 33c935c + 6d35180 commit f401366
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions samples/grids/pivot-grid/features/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,18 @@ export default class Sample extends React.Component<any, any> {
SumOfSale.key = "SUM";
SumOfSale.label = "Sum of Sale";
SumOfSale.aggregator = this.pivotDataFlatAggregateSumSale;
SumOfSale.aggregatorName = PivotAggregatiotType.SUM;
SumOfSale.aggregatorName = PivotAggregationType.SUM;

var MinOfSale = new IgrPivotAggregator();
MinOfSale.key = "MIN";
MinOfSale.label = "Minimum of Sale";
MinOfSale.aggregator = this.pivotDataFlatAggregateMinSale;
MinOfSale.aggregatorName = PivotAggregatiotType.MIN;
MinOfSale.aggregatorName = PivotAggregationType.MIN;

var MaxOfSale = new IgrPivotAggregator();
MaxOfSale.key = "MAX";
MaxOfSale.label = "Maximum of Sale";
MaxOfSale.aggregatorName = PivotAggregatiotType.MAX;
MaxOfSale.aggregatorName = PivotAggregationType.MAX;
MaxOfSale.aggregator = this.pivotDataFlatAggregateMaxSale;

igrPivotValue1.aggregateList = [SumOfSale,MinOfSale,MaxOfSale];
Expand Down

0 comments on commit f401366

Please sign in to comment.