ooxml.append("</c:strRef>"); ooxml.append("\r\n");
ooxml.append("</c:tx>"); ooxml.append("\r\n");
if (this.getSpPr()!=null)
ooxml.append(this.getSpPr().getOOXML());
else if (from2003) {
SpPr ss;
if (parentChart.getChartType()!=RADARCHART)
ss= new SpPr("c", this.getSeriesColor().substring(1), 12700, "000000");
else
ss= new SpPr("c", null, 25400, this.getSeriesColor().substring(1));
ooxml.append(ss.getOOXML());
}
}
return ooxml;
}