2.88.50 Chart.Subtype

Applies to RDL 2003/10 and RDL 2005/01

The Chart.Subtype element specifies the subtype of a Chart. 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:

Stacked: The value of the Chart.Type element can only be "Area", "Bar", or "Column".

PercentStacked: The value of the Chart.Type element can only be "Area", "Bar", or "Column".

Plain: The value of the Chart.Type element cannot be "Stock".

Smooth: The value of the Chart.Type element can only be "Line".

Exploded: The value of the Chart.Type element can only be "Doughnut" or "Pie".

Line: The value of the Chart.Type element can only be "Scatter".

SmoothLine: The value of the Chart.Type element can only be "Scatter".

HighLowClose: The value of the Chart.Type element can only be "Stock".

OpenHighLowClose: The value of the Chart.Type element can only be "Stock".

Candlestick: The value of the Chart.Type element can only be "Stock".

If the value of the Chart.Type element is "Stock", the Chart.Subtype element MUST be specified. If this element is not present, its value is interpreted as "Plain".

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

Parent elements

Chart

The following is the XML Schema definition of the Chart.Subtype element.

 <xsd:element name="Subtype" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="Stacked" />
       <xsd:enumeration value="PercentStacked" />
       <xsd:enumeration value="Plain" />
       <xsd:enumeration value="Smooth" />
       <xsd:enumeration value="Exploded" />
       <xsd:enumeration value="Line" />
       <xsd:enumeration value="SmoothLine" />
       <xsd:enumeration value="HighLowClose" />
       <xsd:enumeration value="OpenHighLowClose" />
       <xsd:enumeration value="Candlestick" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>