2.105.3 Legend.Position

Applies to RDL 2003/10 and RDL 2005/01

The Legend.Position element specifies the position of the chart legend. 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:

RightTop: Positions the legend at the upper corner of the right side of the chart.

TopLeft: Positions the legend at the left corner of the upper side of the chart.

TopCenter: Positions the legend at the middle of the upper side of the chart.

TopRight: Positions the legend at the right corner of the upper side of the chart.

LeftTop: Positions the legend at the upper corner of the left side of the chart.

LeftCenter: Positions the legend at the middle of the left side of the chart.

LeftBottom: Positions the legend at the bottom corner of the left side of the chart.

RightCenter: Positions the legend at the middle of the right side of the chart.

RightBottom: Positions the legend at the bottom corner of the right side of the chart.

BottomRight: Positions the legend at the right corner of the bottom side of the chart.

BottomCenter: Positions the legend at the middle of the bottom side of the chart.

BottomLeft: Positions the legend at the left corner of the bottom side of the chart.

If the Legend.Position element is not present, its value is interpreted as "RightTop".

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

Parent elements

Legend

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

 <xsd:element name="Position" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="TopLeft" />
       <xsd:enumeration value="TopCenter" />
       <xsd:enumeration value="TopRight" />
       <xsd:enumeration value="LeftTop" />
       <xsd:enumeration value="LeftCenter" />
       <xsd:enumeration value="LeftBottom" />
       <xsd:enumeration value="RightTop" />
       <xsd:enumeration value="RightCenter" />
       <xsd:enumeration value="RightBottom" />
       <xsd:enumeration value="BottomLeft" />
       <xsd:enumeration value="BottomCenter" />
       <xsd:enumeration value="BottomRight" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>