2.90.12 Axis.MinorTickMarks

Applies to RDL 2003/10 and RDL 2005/01

The Axis.MinorTickMarks element specifies the type of a minor tick mark on an Axis. 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:

None: Specifies that tick marks do not appear.

Inside: Specifies that tick marks appear inside the axis.

Outside: Specifies that tick marks appear outside the axis.

Cross: Specifies that tick marks appear across the axis.

If the Axis.MinorTickMarks element is not present, its value is interpreted as "None".

Following is the parent element of the Axis.MinorTickMarks element.

Parent elements

Axis

The following is the XML Schema definition of the Axis.MinorTickMarks element.

 <xsd:element name="MinorTickMarks" minOccurs="0">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="None" />
       <xsd:enumeration value="Inside" />
       <xsd:enumeration value="Outside" />
       <xsd:enumeration value="Cross" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>