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

Sender - parameter that returns the component that has generated the event

Args - parameter that enables the user to determine event parameters.

Description

The OnGetParentSerieIndex event enables the user to determine a 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