2.101 DataPoint

Applies to RDL 2003/10 and RDL 2005/01

The DataPoint element specifies a set of single data point for a Chart. The DataPoint element can consist of a single-value expression or multiple-value expressions, depending on the values of the Chart.Type and Chart.Subtype elements.

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

Parent elements

DataPoints

Child elements

DataPoint.Action

DataPoint.DataElementName

DataPoint.DataElementOutput

DataPoint.DataLabel

DataPoint.DataValues

DataPoint.Marker

DataPoint.Style

The following is the XML Schema definition of the DataPoint element.

 <xsd:complexType name="DataPointType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="DataValues" type="DataValuesType" />
     <xsd:element name="DataLabel" type="DataLabelType" minOccurs="0" />
     <xsd:element name="Action" type="ActionType" minOccurs="0" />
     <xsd:element name="Style" type="StyleType" minOccurs="0" />
     <xsd:element name="Marker" type="MarkerType" minOccurs="0" />
     <xsd:element name="DataElementName" type="xsd:string" minOccurs="0" />
     <xsd:element name="DataElementOutput" minOccurs="0">
       <xsd:simpleType>
         <xsd:restriction base="xsd:string">
           <xsd:enumeration value="Output" />
           <xsd:enumeration value="NoOutput" />
         </xsd:restriction>
       </xsd:simpleType>
     </xsd:element>
     <xsd:any namespace="##other" processContents="skip" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="skip" />
 </xsd:complexType>