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, use IEaxAnalyzerCore.InteractiveMode.
Executing the example requires a form with a button 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 the example, synchronous scrolling of the data table and the graph is enabled.
See also: