2.275 DataRowHierarchy

Applies to RDL 2008/01, RDL 2010/01, and RDL 2016/01

The DataRowHierarchy parent element defines the hierarchy of DataMember elements for row data of a CustomReportItem. The definition and use of row data is determined by the custom report item.

The following are the parent and child elements of the DataRowHierarchy element.

Parent elements

CustomData

Child element

DataRowHierarchy.DataMembers

The following is the XML Schema definition of the DataRowHierarchy element in RDL 2008/01.

 <xsd:complexType name="DataRowHierarchyType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="DataMembers" type="DataMembersType" />
     <xsd:any namespace="##other" processContents="skip" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="skip" />
 </xsd:complexType>

The following is the XML Schema definition of the DataRowHierarchy element in RDL 2010/01 and RDL 2016/01.

 <xsd:complexType name="DataRowHierarchyType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="DataMembers" type="DataMembersType" />
     <xsd:any namespace="##other" processContents="lax" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="lax" />
 </xsd:complexType>