IPivotEvaluatorDynamicsHeader.AbsGrowth

Syntax

AbsGrowth: Boolean;

Description

The AbsGrowth property determines whether absolute values growth is calculated.

Comments

By default the property is assigned the False value, and the calculation of absolute growth of indexes is not performed.

Example

Executing the example requires a form with the button named Button1, the TabSheetBox component and the UiErAnalyzer component named UiErAnalyzer1 which is 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 value absolute growth for the table by rows.

Source data:

Value absolute growth:

See also:

IPivotEvaluatorDynamicsHeader