IPivotEvaluatorDynamicsHeader.GrowthRate

Syntax

GrowthRate: Boolean;

Description

The GrowthRate property determines whether value growth rate is calculated.

Comments

The property is set to False by default, and factors growth rate is not calculated.

Example

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.GrowthRate := True;
    Dynamic.Slot := 0;
End Sub Button1OnClick;

Clicking the button calculates values growth rate for the table by rows.

Source data:

Values growth rate:

See also:

IPivotEvaluatorDynamicsHeader