/**
*
*/
public Object createObject(Attributes atts)
{
JRDesignItemLabel itemLabel = new JRDesignItemLabel(null, ((JRChartPlot)digester.peek()).getChart());
String color = atts.getValue(ATTRIBUTE_color);
if (color != null && color.length() > 0)
{
itemLabel.setColor(JRColorUtil.getColor(color, null));
}
String backgroundColor = atts.getValue(ATTRIBUTE_backgroundColor);
if (backgroundColor != null && backgroundColor.length() > 0)
{
itemLabel.setBackgroundColor(JRColorUtil.getColor(backgroundColor, null));
}
// String mask = atts.getValue(ATTRIBUTE_mask);
// if (mask != null && mask.length() > 0)
// {