Use the indicator tag to specify the visual properties of the dial gauge indicator needle or the status meter bar.
The indicator tag is a child tag of the gauge tag.
The indicator tag can have the following child tag: specialEffects
The following example shows the XML for a indicator tag.
<dvt:gauge>
<dvt:indicator fillColor="#d3dfeb" borderColor="#FC7DFF"
useThresholdFillColor="false" type="IT_LINE"/>
</dvt:graph>
| Name | Type | Supports EL? | Description |
|---|---|---|---|
| id | java.lang.String | no | Specifies the identifier for the component |
| fillColor | java.lang.String | no | Specifies the fill color of the indicator. Enter values in RGB hexadecimal. The example borderColor="#000000" specifies black. |
| borderColor | java.lang.String | no | Specifies the border color of the indicator. Enter values in RGB hexadecimal. The example borderColor="#000000" specifies black. |
| useThresholdFillColor | boolean | no | Specifies whether to override the indicator color with the color of the threshold in which metrics falls. Set to true to override, false (default) otherwise. |
| type | java.lang.String | no | Specifies the kind of indicator used. Valid values are: IT_LINE (default), IT_FILL, or IT_NEEDLE. |