getGap(String indicator, Object onDate)
Returns the global target gap for the specified indicator on the specified date.
| Name | Type | Description |
|---|---|---|
| indicator | String | Unique identifier of the indicator for which to provide the gap information. |
| onDate | Object | Date of the score to use to compare against the target score. |
| Type | Description |
|---|---|
| Number | Difference between the score on the specified date and the global target score. |
Example:
var a = pa.getGap($[[% of open overdue incidents]], score_start) / pa.getGlobalTarget($[[% of open overdue incidents]],score_start);
var b = pa.getGap($[[Average age of last update of open incidents]], score_start) / pa.getGlobalTarget($[[Average age of last update of open incidents]], score_start);
var c = pa.getGap($[[Number of open incidents]], score_start) / pa.getGlobalTarget($[[Number of open incidents]], score_start);
var res = 100 - (100 * (a + b + c) / 3);
res;