UiChart.OnGetParentSerieIndex

Fore Syntax

Sub OnGetParentSerieIndex(Sender: Object; Args: IUiChartParentSerieIndexEventArgs);
Begin
    //set of operators
End Sub OnGetParentSerieIndex;

Fore.NET Syntax

Private Sub OnGetParentSerieIndex(Sender: System.Object; Args: Prognoz.Platform.Interop.Chart.UiChartParentSerieIndexEventArgs);
Begin
    //set of operators
End Sub;

Parameters

The Sender parameter returns the component that has generated the event.

The Args parameter allows to determine event parameters.

Description

The OnGetParentSerieIndex event allows to determine parent series index.

Comments

Series with identical parent and the parent series are combined into a group with identical settings.

To determine whether relative series are used, use UiChart.OnGetRelativeSerieEnabled.

Fore and Fore.NET examples

The event use is given in the example for IChart.DisplayMode.

See also:

UiChart