DerivedSerieVisible(SerieType: LnDerivedSerieType ): Boolean;
SerieType: Type of the child series.
The DerivedSerieVisible property determines whether child series of the calculated series are visible on the chart. True: the series is to be shown, False: the series is to be hidden.
Executing the example requires a form, a button with the Button1 name located on this form, the LanerBox component, the LanerResultsBox component with the LanerResultsBox1 name and the UiErAnalyzer component used as a data source for LanerBox and LanerResultsBox. Workbook of the time series database must 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 this example the model series is not shown on the chart.
See also: