2.88.23 Chart.DataElementOutput

The Chart.DataElementOutput element specifies whether an item appears in a data rendering. This element is optional. If the Chart.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 item appears in the data rendering output.

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

ContentsOnly: Specifies that the item itself does not appear in the data rendering output, but that the contents of the item appear in the data rendering output.

Auto (default): Specifies that the item does not appear in the data rendering output if, in RDL 2003/10 and RDL 2005/01, the Chart.Visibility element has its Hidden property set to true or if, in RDL 2008/01, RDL 2010/01, and RDL 2016/01, the value of the grandchild Visibility.Hidden element of the Chart element is present and is set to true. Otherwise, the value of the Chart.DataElementOutput element is interpreted as "Output".

If the Chart.DataElementOutput element is not present, its value is interpreted as "Auto".

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

Parent elements

Chart

The following is the XML Schema definition of the Chart.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:enumeration value="Auto" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>