IEaxAnalyzer.SynchronizeViews

Syntax

SynchronizeViews;

Description

The SynchronizeViews method synchronizes the chart with the data table.

NOTE. This method is outdated.

Example

Executing this 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;

S: Boolean;

Begin

An := UiErAnalyzer1.ErAnalyzer;

An.SynchronizeViews;

End Sub Button1OnClick;

After executing this example the chart is synchronized with the data table.

See also:

IEaxAnalyzer