2.104.3 Marker.Type

Applies to RDL 2003/10 and RDL 2005/01

The Marker.Type element specifies the type of the markers for chart values. This element is optional. If this element is present, its value MUST be a String ([XMLSCHEMA2/2] section 3.2.1) and MUST be one of the following:

None (default): Specifies that the marker is not displayed.

Square: Specifies a square marker.

Circle: Specifies a circle marker.

Diamond: Specifies a diamond marker.

Triangle: Specifies a triangle marker.

Cross: Specifies a cross marker.

Auto: Specifies to automatically cycle through marker types for each series.

If the Marker.Type element is not present, its value is interpreted as "None".

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

Parent elements

Marker

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

 <xsd:element name="Type" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="None" />
       <xsd:enumeration value="Square" />
       <xsd:enumeration value="Circle" />
       <xsd:enumeration value="Diamond" />
       <xsd:enumeration value="Triangle" />
       <xsd:enumeration value="Cross" />
       <xsd:enumeration value="Auto" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>