DerivedSerieVisible(SerieType: LnDerivedSerieType): Boolean;
SerieType. Child series type.
The DerivedSerieVisible property determines whether child series of the calculated series are displayed on a chart.
Available values:
True. A series is displayed on a chart.
False. A series is not displayed on a chart.
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: