2.2.4.126 IndicatorBand

Namespace: http://www.microsoft.com/performancepoint/scorecards

This is a visualization representing one state of an indicator.

 <xs:complexType name="IndicatorBand" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:sequence>
     <xs:element minOccurs="0" maxOccurs="1" name="ImageData" type="xs:string"/>
   </xs:sequence>
   <xs:attribute name="Color" type="xs:string"/>
   <xs:attribute name="BackColor" type="xs:string"/>
   <xs:attribute name="ToolTip" type="xs:string"/>
 </xs:complexType>

ImageData: A base-64 encoded string converted from a stream of the Portable Network Graphics (PNG) image file representing this indicator state.

  • The PNG file stream that ImageData originates from MUST NOT exceed 512,000 bytes in length.

  • Both the height and the width of the PNG image MUST NOT exceed 256 pixels.

Color: A string converted from a 24-bit color that represents this indicator state when it is shown as text.  The string MUST be formatted as "#RRGGBB".

  • RR – A two-digit hexadecimal value that indicates the amount of red light in the color. For example, #FF0000 defines the color red.

  • GG – A two-digit hexadecimal value that indicates the amount of green light in the color. For example, #00FF00 defines the color green.

  • BB - A two-digit hexadecimal value that indicates the amount of blue light in the color. For example, #0000FF defines the color blue.

BackColor: A string converted from a 24-bit color that represents this indicator state in visualizations where images or text cannot be displayed, such as in strategy maps. The string MUST be formatted as "#RRGGBB".

  • RR – A two-digit hexadecimal value that indicates the amount of red light in the color. For example, #FF0000 defines the color red.

  • GG – A two-digit hexadecimal value that indicates the amount of green light in the color. For example, #00FF00 defines the color green.

  • BB - A two-digit hexadecimal value that indicates the amount of blue light in the color. For example, #0000FF defines the color blue.

ToolTip: A string containing the ToolTip for this IndicatorBand. The length MUST NOT exceed 1000 characters.