From 6d35180285b4866824d9fd6385c8afb2457c3536 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Tue, 17 Dec 2024 17:56:26 -0500 Subject: [PATCH] Update index.tsx --- samples/grids/pivot-grid/features/src/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/samples/grids/pivot-grid/features/src/index.tsx b/samples/grids/pivot-grid/features/src/index.tsx index 6f2d3923a..fcde4e746 100644 --- a/samples/grids/pivot-grid/features/src/index.tsx +++ b/samples/grids/pivot-grid/features/src/index.tsx @@ -66,18 +66,18 @@ export default class Sample extends React.Component { 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];