ILanerResultsBox.DerivedSerieVisible

Syntax

DerivedSerieVisible(SerieType: LnDerivedSerieType): Boolean;

Parameters

SerieType. Child series type.

Description

The DerivedSerieVisible property determines whether child series of the calculated series are displayed on a chart.

Comments

Available values:

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 that is a data source for LanerBox and LanerResultsBox. A 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