IPivotEvaluatorDynamicsHeader.IncreaseRate

Syntax

IncreaseRate: Boolean;

Description

The IncreaseRate property determines whether values rate of change 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.IncreaseRate := True;
    Dynamic.Slot := 0;
End Sub Button1OnClick;

Clicking the button calculates value rate of change for the table by rows.

Source data:

Values rate of change:

See also:

IPivotEvaluatorDynamicsHeader