2.88.55 Chart.Type

Applies to RDL 2003/10 and RDL 2005/01

The Chart.Type element specifies the type 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:

Column: The value of the Chart.Subtype element can only be "Plain", "Stacked", or "PercentStacked".

Bar: The value of the Chart.Subtype element can only be "Plain", "Stacked", or "PercentStacked".

Line: The value of the Chart.Subtype element can only be "Plain" or "Smooth".

Pie: The value of the Chart.Subtype element can only be "Plain" or "Exploded".

Scatter: The value of the Chart.Subtype element can only be "Plain", "Line", or "SmoothLine".

Bubble: The value of the Chart.Subtype element can only be "Plain".

Area: The value of the Chart.Subtype element can only be "Plain", "Stacked" or "PercentStacked".

Doughnut: The value of the Chart.Subtype element can only be "Plain" or "Exploded".

Stock: The value of the Chart.Subtype element can only be "HighLowClose", "OpenHighLowClose", or "Candlestick".

If the Chart.Type element is not present, its value is interpreted as "Column".

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

Parent elements

Chart

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

 <xsd:element name="Type" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="Column" />
       <xsd:enumeration value="Bar" />
       <xsd:enumeration value="Line" />
       <xsd:enumeration value="Pie" />
       <xsd:enumeration value="Scatter" />
       <xsd:enumeration value="Bubble" />
       <xsd:enumeration value="Area" />
       <xsd:enumeration value="Doughnut" />
       <xsd:enumeration value="Stock" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>