2.141.9 ChartDataPoint.DataElementOutput

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

The ChartDataPoint.DataElementOutput element specifies whether an item appears in a data rendering. This element is optional. If the ChartDataPoint.DataElementOutput element is present, its value MUST be a String ([XMLSCHEMA2/2] section 3.2.1) that is one of the following:

Output: Specifies that the data point appears in the data rendering output.

NoOutput: Specifies that the data point does not appear in the data rendering output.

ContentsOnly: Specifies that the data point does not appear in the output, but that its values appears in the data renderer output as if they were in the data point’s container element.

If the ChartDataPoint.DataElementOutput element is not present, its value is interpreted as "ContentsOnly".

Following is the parent element of the ChartDataPoint.DataElementOutput element.

Parent elements

ChartDataPoint

The following is the XML Schema definition of the ChartDataPoint.DataElementOutput element.

 <xsd:element name="DataElementOutput" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="Output" />
       <xsd:enumeration value="NoOutput" />
       <xsd:enumeration value="ContentsOnly" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>