public class AxisScaling
extends java.lang.Object
implements java.lang.Cloneable
To learn more, visit the Working with Charts documentation article.
| Modifier and Type | Method and Description |
|---|---|
double |
getLogBase()
Gets the logarithmic base for a logarithmic axis.
|
AxisBound |
getMaximum()
Gets the maximum value of the axis.
|
AxisBound |
getMinimum()
Gets minimum value of the axis.
|
int |
getType()
Gets scaling type of the axis.
|
protected java.lang.Object |
memberwiseClone() |
void |
setLogBase(double value)
Sets the logarithmic base for a logarithmic axis.
|
void |
setMaximum(AxisBound value)
Sets the maximum value of the axis.
|
void |
setMinimum(AxisBound value)
Sets minimum value of the axis.
|
void |
setType(int value)
Sets scaling type of the axis.
|
public int getType()
AxisScaleType.LINEAR value is the only that is allowed in MS Office 2016 new charts.AxisScaleType constants.public void setType(int value)
AxisScaleType.LINEAR value is the only that is allowed in MS Office 2016 new charts.value - Scaling type of the axis. The value must be one of AxisScaleType constants.public double getLogBase()
The property is not supported by MS Office 2016 new charts.
Valid range of a floating point value is greater than or equal to 2 and less than or equal to 1000. The property has effect only if getType() / setType(int) is set to AxisScaleType.LOGARITHMIC.
Setting this property sets the getType() / setType(int) property to AxisScaleType.LOGARITHMIC.
public void setLogBase(double value)
The property is not supported by MS Office 2016 new charts.
Valid range of a floating point value is greater than or equal to 2 and less than or equal to 1000. The property has effect only if getType() / setType(int) is set to AxisScaleType.LOGARITHMIC.
Setting this property sets the getType() / setType(int) property to AxisScaleType.LOGARITHMIC.
value - The logarithmic base for a logarithmic axis.public AxisBound getMinimum()
public void setMinimum(AxisBound value)
value - Minimum value of the axis.public AxisBound getMaximum()
public void setMaximum(AxisBound value)
value - The maximum value of the axis.protected java.lang.Object memberwiseClone()