2.90.6 Axis.MajorTickMarks

Applies to RDL 2003/10 and RDL 2005/01

The Axis.MajorTickMarks element specifies the type of a major 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.MajorTickMarks element is not present, its value is interpreted as "None".

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

Parent elements

Axis

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

 <xsd:element name="MajorTickMarks" 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>