ILanerResultsBox.ChartContainerVisible

Syntax

ChartContainerVisible: Boolean;

Description

The ChartContainerVisible property determines whether the Chart panel is shown. True: the panel is shown, False: the panel is hidden.

NOTE. This property is outdated, it is recommended to use ILanerResultsBox.ContainerVisible instead.

Example

Executing the example requires a form, a button named Button1 positioned on this form, the LanerBox component, the LanerResultsBox component named LanerResultsBox1 and the UiErAnalyzer component used as a data source for LanerBox and LanerResultsBox. Workbook of the time series database must be loaded to UiErAnalyzer1.

This example is executed on clicking the button.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Begin

LanerResultsBox1.ChartContainerVisible := False;

End Sub Button1OnClick;

After executing this example the Chart panel is hidden.

See also:

ILanerResultsBox