/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */

package org.apache.poi.xddf.usermodel.chart;

import org.apache.poi.util.Beta;
import org.apache.poi.xddf.usermodel.HasShapeProperties;
import org.apache.poi.xddf.usermodel.XDDFShapeProperties;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTAxPos;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTCrosses;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTNumFmt;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTPlotArea;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTScaling;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt;
import org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties;

Base class for all axis types.
/** * Base class for all axis types. */
@Beta public abstract class XDDFChartAxis implements HasShapeProperties { protected abstract CTUnsignedInt getCTAxId(); protected abstract CTAxPos getCTAxPos(); protected abstract CTNumFmt getCTNumFmt(); protected abstract CTScaling getCTScaling(); protected abstract CTCrosses getCTCrosses(); protected abstract CTBoolean getDelete(); protected abstract CTTickMark getMajorCTTickMark(); protected abstract CTTickMark getMinorCTTickMark(); public abstract XDDFShapeProperties getOrAddMajorGridProperties(); public abstract XDDFShapeProperties getOrAddMinorGridProperties();
Since:4.0.1
/** * @since 4.0.1 */
public abstract void setTitle(String text);
Returns:true if minor unit value is defined, false otherwise
/** * @return true if minor unit value is defined, false otherwise */
public abstract boolean isSetMinorUnit();
Params:
  • minor – axis minor unit
/** * @param minor * axis minor unit */
public abstract void setMinorUnit(double minor);
Returns:axis minor unit or NaN if not set
/** * @return axis minor unit or NaN if not set */
public abstract double getMinorUnit();
Returns:true if major unit value is defined, false otherwise
/** * @return true if major unit value is defined, false otherwise */
public abstract boolean isSetMajorUnit();
Params:
  • major – axis major unit
/** * @param major * axis major unit */
public abstract void setMajorUnit(double major);
Returns:axis major unit or NaN if not set
/** * @return axis major unit or NaN if not set */
public abstract double getMajorUnit();
Returns:axis id
/** * @return axis id */
public long getId() { return getCTAxId().getVal(); }
Returns:axis position
/** * @return axis position */
public AxisPosition getPosition() { return AxisPosition.valueOf(getCTAxPos().getVal()); }
Params:
  • position – new axis position
/** * @param position * new axis position */
public void setPosition(AxisPosition position) { getCTAxPos().setVal(position.underlying); }
Use this to check before retrieving a number format, as calling getNumberFormat() may create a default one if none exists.
Returns:true if a number format element is defined, false if not
/** * Use this to check before retrieving a number format, as calling * {@link #getNumberFormat()} may create a default one if none exists. * * @return true if a number format element is defined, false if not */
public abstract boolean hasNumberFormat();
Params:
  • format – axis number format
/** * @param format * axis number format */
public void setNumberFormat(String format) { getCTNumFmt().setFormatCode(format); getCTNumFmt().setSourceLinked(true); }
Returns:axis number format
/** * @return axis number format */
public String getNumberFormat() { return getCTNumFmt().getFormatCode(); }
Returns:true if log base is defined, false otherwise
/** * @return true if log base is defined, false otherwise */
public boolean isSetLogBase() { return getCTScaling().isSetLogBase(); } private static final double MIN_LOG_BASE = 2.0; private static final double MAX_LOG_BASE = 1000.0;
Params:
  • logBase – a number between 2 and 1000 (inclusive)
Throws:
/** * @param logBase * a number between 2 and 1000 (inclusive) * @throws IllegalArgumentException * if log base not within allowed range */
public void setLogBase(double logBase) { if (logBase < MIN_LOG_BASE || MAX_LOG_BASE < logBase) { throw new IllegalArgumentException("Axis log base must be between 2 and 1000 (inclusive), got: " + logBase); } CTScaling scaling = getCTScaling(); if (scaling.isSetLogBase()) { scaling.getLogBase().setVal(logBase); } else { scaling.addNewLogBase().setVal(logBase); } }
Returns:axis log base or NaN if not set
/** * @return axis log base or NaN if not set */
public double getLogBase() { CTScaling scaling = getCTScaling(); if (scaling.isSetLogBase()) { return scaling.getLogBase().getVal(); } return Double.NaN; }
Returns:true if minimum value is defined, false otherwise
/** * @return true if minimum value is defined, false otherwise */
public boolean isSetMinimum() { return getCTScaling().isSetMin(); }
Params:
  • min – axis minimum
/** * @param min * axis minimum */
public void setMinimum(double min) { CTScaling scaling = getCTScaling(); if (Double.isNaN(min)) { if (scaling.isSetMin()) { scaling.unsetMin(); } } else { if (scaling.isSetMin()) { scaling.getMin().setVal(min); } else { scaling.addNewMin().setVal(min); } } }
Returns:axis minimum or NaN if not set
/** * @return axis minimum or NaN if not set */
public double getMinimum() { CTScaling scaling = getCTScaling(); if (scaling.isSetMin()) { return scaling.getMin().getVal(); } else { return Double.NaN; } }
Returns:true if maximum value is defined, false otherwise
/** * @return true if maximum value is defined, false otherwise */
public boolean isSetMaximum() { return getCTScaling().isSetMax(); }
Params:
  • max – axis maximum
/** * @param max * axis maximum */
public void setMaximum(double max) { CTScaling scaling = getCTScaling(); if (Double.isNaN(max)) { if (scaling.isSetMax()) { scaling.unsetMax(); } } else { if (scaling.isSetMax()) { scaling.getMax().setVal(max); } else { scaling.addNewMax().setVal(max); } } }
Returns:axis maximum or NaN if not set
/** * @return axis maximum or NaN if not set */
public double getMaximum() { CTScaling scaling = getCTScaling(); if (scaling.isSetMax()) { return scaling.getMax().getVal(); } else { return Double.NaN; } }
Returns:axis orientation
/** * @return axis orientation */
public AxisOrientation getOrientation() { return AxisOrientation.valueOf(getCTScaling().getOrientation().getVal()); }
Params:
  • orientation – axis orientation
/** * @param orientation * axis orientation */
public void setOrientation(AxisOrientation orientation) { CTScaling scaling = getCTScaling(); if (scaling.isSetOrientation()) { scaling.getOrientation().setVal(orientation.underlying); } else { scaling.addNewOrientation().setVal(orientation.underlying); } }
Returns:axis cross type
/** * @return axis cross type */
public AxisCrosses getCrosses() { return AxisCrosses.valueOf(getCTCrosses().getVal()); }
Params:
  • crosses – axis cross type
/** * @param crosses * axis cross type */
public void setCrosses(AxisCrosses crosses) { getCTCrosses().setVal(crosses.underlying); }
Declare this axis cross another axis.
Params:
  • axis – that this axis should cross
/** * Declare this axis cross another axis. * * @param axis * that this axis should cross */
public abstract void crossAxis(XDDFChartAxis axis);
Returns:visibility of the axis.
/** * @return visibility of the axis. */
public boolean isVisible() { return !getDelete().getVal(); }
Params:
  • value – visibility of the axis.
/** * @param value * visibility of the axis. */
public void setVisible(boolean value) { getDelete().setVal(!value); }
Returns:major tick mark.
/** * @return major tick mark. */
public AxisTickMark getMajorTickMark() { return AxisTickMark.valueOf(getMajorCTTickMark().getVal()); }
Params:
  • tickMark – major tick mark type.
/** * @param tickMark * major tick mark type. */
public void setMajorTickMark(AxisTickMark tickMark) { getMajorCTTickMark().setVal(tickMark.underlying); }
Returns:minor tick mark.
/** * @return minor tick mark. */
public AxisTickMark getMinorTickMark() { return AxisTickMark.valueOf(getMinorCTTickMark().getVal()); }
Params:
  • tickMark – minor tick mark type.
/** * @param tickMark * minor tick mark type. */
public void setMinorTickMark(AxisTickMark tickMark) { getMinorCTTickMark().setVal(tickMark.underlying); } protected CTShapeProperties getOrAddLinesProperties(CTChartLines gridlines) { CTShapeProperties properties; if (gridlines.isSetSpPr()) { properties = gridlines.getSpPr(); } else { properties = gridlines.addNewSpPr(); } return properties; } protected long getNextAxId(CTPlotArea plotArea) { long totalAxisCount = plotArea.sizeOfValAxArray() + plotArea.sizeOfCatAxArray() + plotArea.sizeOfDateAxArray() + plotArea.sizeOfSerAxArray(); return totalAxisCount; } }