ILanerResultsBox.DerivedSerieVisible

Syntax

DerivedSerieVisible(SerieType: LnDerivedSerieType ): Boolean;

Parameters

SerieType: Type of the child series.

Description

The DerivedSerieVisible property determines whether child series of the calculated series are visible on the chart. True - the series is shown, False - the series is hidden.

Example

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

The example is executed on clicking the button.

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

Begin

LanerResultsBox1.DerivedSerieVisible(LnDerivedSerieType.Modelling) := False;

End Sub Button1OnClick;

After executing the example the model series is not shown on the chart.

See also:

ILanerResultsBox