GaugeSetGroup method (WinStudio scripts)
Applies To
IWSFormComponent interface
Definition
Sets the current Group for a gauge that is bound to a critical number that accepts Group values.
Syntax
object.GaugeSetGroup(string)
Part | Description |
---|---|
object | Required. A reference to a valid gauge component object. |
string | Required. A valid value for the Group over which the critical number will be calculated. |
Remarks
To configure IDO-based critical numbers to calculate by group, you can enter a group by property. For example, a sales number could be grouped by state. Using this method, a state (OH) could be passed into the critical number so it would only calculate for Ohio.
Example
Sub Main() ThisForm.Components("gauge1").GaugeSetGroup("OH") End Sub