UiChart.OnGetGroupCount

Fore Syntax

Sub OnGetGroupCount(Sender: Object; Args: IUiChartGroupCountEventArgs);
Begin
    //set of operators
End Sub OnGetGroupCount;

Fore.NET Syntax

Private Sub OnGetGroupCount(Sender: System.Object; Args: Prognoz.Platform.Interop.Chart.UiChartGroupCountEventArgs);
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 OnGetGroupCount event allows to determine the number of chart groups.

Comments

To determine chart group name, use UiChart.OnGetGroupName.

Fore and Fore.NET examples

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

See also:

UiChart