Use the gaugeSetBackground tag to specify the background colors of a gauge set.
The gaugeSetBackground tag is a child tag of the gauge tag.
The gaugeSetBackground tag can have a child tag: specialEffects
The following example shows the XML for a gaugeSetBackground tag.
   <dvt:gauge> 
      <dvt:gaugeSetBackground fillColor="#f1f7fb" borderColor="#62a4d5"/> 
   </dvt:gauge>
      
| Name | Type | Supports EL? | Description | 
|---|---|---|---|
| id | java.lang.String | no | Specifies the identifier for the component | 
| fillColor | java.lang.String | yes | Specifies the fill color of the background of a gauge set. Enter values in RGB hexadecimal. The example color="#000000" specifies black color. This color property takes 6 or 8 digit hex as input. When 8 digit hex is used, the first 2 digits represent transparency, otherwise the color is opaque. Note: To make the gauge background to be transparent, special effect fill type needs to set to FT_COLOR and gaugeSetBackground needs to set to transparent. | 
| borderColor | java.lang.String | yes | Specifies the border color of the background of a gauge set. Enter values in RGB hexadecimal. The example color="#000000" specifies black color. This color property takes 6 or 8 digit hex as input. When 8 digit hex is used, the first 2 digits represent transparency, otherwise the color is opaque. |