/**
*
*/
public Object createObject(Attributes atts) throws JRException
{
JRCategoryAxisFormat categoryAxisFormat = (JRCategoryAxisFormat)digester.peek();
String labelRotation = atts.getValue(JRXmlConstants.ATTRIBUTE_labelRotation);
if (labelRotation != null && labelRotation.length() > 0)
{
categoryAxisFormat.setCategoryAxisTickLabelRotation(Double.valueOf(labelRotation));
}
return categoryAxisFormat;
}