Numbering: IPivotHeaderNumbering;
Numbering: Prognoz.Platform.Interop.Pivot.IPivotHeaderNumbering;
The Numbering property returns numbering control parameters in headers.
Executing the example requires a form with the Button1 button, the UiErAnalyzer component named UiErAnalyzer1 and any visualizers, for which UiErAnalyzer1 is set as a data source. An express object is connected to UiErAnalyzer1.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
Analyzer: IEaxAnalyzer;
Pivot: IPivot;
Header: IPivotHeader;
Begin
Analyzer := UiErAnalyzer1.ErAnalyzer;
Pivot := Analyzer.Pivot;
Header := Pivot.LeftHeader;
Header.Numbering.IsOn := True;
End Sub Button1OnClick;
Clicking the button enables continuous numbering for the headers located by rows.
The requirements and result of the Fore.NET example execution match with those in the Fore example. Use Fore.NET analogs instead of Fore components.
Imports Prognoz.Platform.Interop.Express;
Imports Prognoz.Platform.Interop.Pivot;
Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
Analyzer: EaxAnalyzer;
Pivot: IPivot;
Header: IPivotHeader;
Begin
Analyzer := UiErAnalyzerNet1.AnalyzerUi.ErAnalyzer;
Pivot := Analyzer.Pivot;
Header := Pivot.LeftHeader;
Header.Numbering.IsOn := True;
End Sub;
See also: