/*****************************************************************************************/
private void tickMarks() throws ChartDataException
{
AxisProperties axisProperties = new AxisProperties();
axisProperties.getXAxisProperties().setShowTicks( AxisTypeProperties.TICKS_ONLY_WITH_LABELS );
super.exportImage( this.getChart( axisProperties ), "ticksWithLabels" );
axisProperties = new AxisProperties();
axisProperties.getXAxisProperties().setShowTicks( AxisTypeProperties.TICKS_NONE );
super.exportImage( this.getChart( axisProperties ), "noTicks" );
axisProperties = new AxisProperties();
ChartStroke xTicks = new ChartStroke( new BasicStroke( 1.0f ), Color.blue );
axisProperties.getXAxisProperties().setTickChartStroke( xTicks );
ChartStroke yTicks = new ChartStroke( new BasicStroke( 1.0f ), Color.green );
axisProperties.getYAxisProperties().setTickChartStroke( yTicks );
super.exportImage( this.getChart( axisProperties ), "tickColors" );
axisProperties = new AxisProperties();
ChartStroke xTickStroke = new ChartStroke( new BasicStroke( 2.0f ), Color.blue );
axisProperties.getXAxisProperties().setTickChartStroke( xTickStroke );
super.exportImage( this.getChart( axisProperties ), "tickStroke" );
}