UiChart.OnGetSerieGroupName

Fore Syntax

Sub OnGetSerieGroupName(Sender: Object; Args: IUiChartSerieGroupNameEventArgs);
Begin
    //set of operators
End Sub OnGetSerieGroupName;

Fore.NET Syntax

Private Sub OnGetSerieGroupName(Sender: System.Object; Args: Prognoz.Platform.Interop.Chart.UiChartSerieGroupNameEventArgs);
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 OnGetSerieGroupName event allows to determine name of chart series group.

Comments

To determine index of chart series group, use UiChart.OnGetSerieGroupIndex.

Fore and Fore.NET examples

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

See also:

UiChart