Here, we'll see how to:

Let's see them one by one.

 
Show/hide tick marks and tick values

You can opt to hide both the tick marks and tick values using:

<chart ... showTickMarks='0' showTickValues='0' ...>

This will result in:

 
Configuring tick values

You can opt to show every nth tick value by setting:

<chart ... tickValueStep='2' ...>

This will result in every 2nd major tick mark's value being shown, as under:

You can also set the decimals for the tick values using:

<chart ... tickValueDecimals='2' forceTickValueDecimals='1' ..>

Here, we've set tick value decimals as 2 and forced them to display. It will result in:

 
Placing tick marks & values inside

You can opt to show tick marks & tick values inside by setting:

<chart ... placeTicksInside='1' placeValuesInside='1' ...>

This will result in:

 
Configuring number of major and minor tick marks

You can configure the number of tick marks as under:

<chart ... majorTMNumber='12' minorTMNumber='3' ...>

It will result in:

As you can see above, the chart has automatically adjusted the number of major ticks to a best feasible value. However, if you do not want the chart to do the same, you can add:

<chart ... adjustTM='0' majorTMNumber='12' minorTMNumber='3' ...>

It will then result in:

 
Configuring tick mark cosmetics

You can configure tick mark cosmetics using:

<chart ... majorTMColor='333333' majorTMAlpha='100' majorTMHeight='10' majorTMThickness='2' minorTMColor='666666' minorTMAlpha='100' minorTMHeight='7' minorTMThickness='1' ...>

This will result in:

 
Setting tick value paddings

You can configure the tick value padding (in pixels) as under:

<chart ... tickValueDistance='25' ...>

This will result in: