AxisChart axisChart = new AxisChart( dataSeries, new ChartProperties(), new AxisProperties(), new LegendProperties(), width, height );
super.exportImage( axisChart, "axisTitles" );
AxisProperties axisProperties = new AxisProperties();
ChartFont yAxisFont = new ChartFont( new Font( "Arial Narrow", Font.BOLD, 14 ), Color.blue );
axisProperties.getYAxisProperties().setAxisTitleChartFont( yAxisFont );
axisChart = new AxisChart( dataSeries, new ChartProperties(), axisProperties, new LegendProperties(), width, height );
super.exportImage( axisChart, "axisTitleFont" );
}