* Receives the value of the ODFDOM attribute representation <code>ChartAxisPositionAttribute</code> , See {@odf.attribute chart:axis-position}
*
* @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public Double getChartAxisPositionAttribute() {
ChartAxisPositionAttribute attr = (ChartAxisPositionAttribute) getOdfAttribute(OdfDocumentNamespace.CHART, "axis-position");
if (attr != null) {
return Double.valueOf(attr.doubleValue());
}
return null;
}