2.102.1 DataLabel.Position

Applies to RDL 2003/10 and RDL 2005/01

The DataLabel.Position element specifies the position of a DataLabel in a Chart. This element is optional. If this element is present, its value MUST be a String ([XMLSCHEMA2/2] section 3.2.1) that is one of the following:

Auto (default): Specifies automatic positioning.

Top: Positions the data label at the top of the data point.

TopLeft: Positions the data label at the top-left of the data point.

TopRight: Positions the data label at the top-right of the data point.

Left: Positions the data label to the left of the data point.

Center: Positions the data label at the center of the data point.

Right: Positions the data label to the right of the data point.

BottomRight: Positions the data label at the bottom-right of the data point.

Bottom: Positions the data label at the bottom of the data point.

BottomLeft: Positions the data label at the bottom-left of the data point.

If the DataLabel.Position element is not present, its value is interpreted as "Auto".

Following is the parent element of the DataLabel.Position element.

Parent elements

DataLabel

The following is the XML Schema definition of the DataLabel.Position element.

 <xsd:element name="Position" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="Auto" />
       <xsd:enumeration value="Top" />
       <xsd:enumeration value="TopLeft" />
       <xsd:enumeration value="TopRight" />
       <xsd:enumeration value="Left" />
       <xsd:enumeration value="Center" />
       <xsd:enumeration value="Right" />
       <xsd:enumeration value="BottomLeft" />
       <xsd:enumeration value="Bottom" />
       <xsd:enumeration value="BottomRight" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>