<dvt:gaugeLegendArea>

gaugeLegendArea gauge legend area


Use the gaugeLegendArea tag to determine the characteristics and display properties of the legend area of a gauge.

Relationship with other tags

The gaugeLegendArea tag is a child tag of the gauge tag.
The gaugeLegendArea tag can have the following child tag: specialEffects

Example

The following example shows the XML for a gaugeLegendArea tag.

        <dvt:gauge>
            <dvt:gaugeLegendArea visible="true" position="LAP_RIGHT" borderColor="#cccccc" fillColor="#ffffff"/>
        </dvt:graph>
          

Attributes

Name Type Supports EL? Description
id java.lang.String no Specifies the identifier for the component
borderColor java.lang.String no Specifies the color of the border for the legend area. 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.
fillColor java.lang.String no Specifies the color of the interior of the legend area. 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.
position java.lang.String no Specifies a constant that indicates the position of this legend area on the gauge. Valid values are:
  • LAP_BOTTOM - (Default) Positions the legend area at the bottom of the gauge.
  • LAP_LEFT - Positions the legend area on the left of the gauge.
  • LAP_RIGHT - Positions the legend area on the right of the gauge.
  • LAP_TOP - Positions the legend area at the top of the gauge.
rendered boolean no Indicates whether the legend area of the gauge is to be visible. Valid values are "true" and "false".