AbsGrowth: Boolean;
The AbsGrowth property determines whether absolute value growth is calculated.
The property is set to False by default, and absolute growth of factors is not calculated.
Executing the example requires a form with the button named Button1, the TabSheetBox component and the UiErAnalyzer component named UiErAnalyzer1, which is a data source for TabSheetBox.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
OLAP: IEaxAnalyzer;
Pivot: IPivot;
Dynamics: IPivotEvaluatorDynamics;
Dynamic: IPivotEvaluatorDynamicsHeader;
Begin
OLAP := UiErAnalyzer1.ErAnalyzer;
Pivot := OLAP.Pivot;
Dynamics := Pivot.Evaluator.Dynamics;
Dynamic := Dynamics.LeftHeader;
Dynamic.AbsGrowth := True;
Dynamic.Slot := 0;
End Sub Button1OnClick;
Clicking the button calculates absolute value growth for a table by rows.
Source data:
Absolute value growth:
See also: