2.99.14 ChartSeries.PlotType

Applies to RDL 2003/10 and RDL 2005/01

The ChartSeries.PlotType element specifies whether a ChartSeries MUST be plotted as a line. 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:

Auto (Default): Specifies that whether to plot the series as a line is dependent on the values of the Chart.Type and Chart.Subtype elements.

Line: Specifies that the series is plotted as a line.

If the ChartSeries.PlotType element is not present, its value is interpreted as "Auto".

Following is the parent element of the ChartSeries.PlotType element.

Parent elements

ChartSeries

The following is the XML Schema definition of the ChartSeries.PlotType element.

 <xsd:element name="PlotType" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="Auto" />
       <xsd:enumeration value="Line" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>