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

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

Description

The OnGetGroupCount event enables the user to determine the number of chart groups.

Comments

To determine a 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