AutoScrolling: Boolean;
The AutoScrolling property determines synchronous scrolling of the data table, and and the graph. True: synchronous scrolling is enabled, False: synchronous scrolling is disabled.
NOTE. This property is outdated, it is recommended to use IEaxAnalyzer.InteractiveMode.
Executing this example requires a form with a button on named Button1, the ChartBox and TabSheetBox components and the UiErAnalyzer component named UiErAnalyzer1 which is used as a data source.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
An: IEaxAnalyzer;
Begin
An := UiErAnalyzer1.ErAnalyzer;
An.AutoScrolling := True;
End Sub Button1OnClick;
After executing this example, synchronous scrolling of the data table and the graph is enabled.
See also: