@Deprecated @Removal(version="4.2") public interface ChartAxis
Modifier and Type | Method and Description |
---|---|
void |
crossAxis(ChartAxis axis)
Deprecated.
Declare this axis cross another axis.
|
AxisCrosses |
getCrosses()
Deprecated.
|
long |
getId()
Deprecated.
|
double |
getLogBase()
Deprecated.
|
AxisTickMark |
getMajorTickMark()
Deprecated.
|
double |
getMaximum()
Deprecated.
|
double |
getMinimum()
Deprecated.
|
AxisTickMark |
getMinorTickMark()
Deprecated.
|
java.lang.String |
getNumberFormat()
Deprecated.
|
AxisOrientation |
getOrientation()
Deprecated.
|
AxisPosition |
getPosition()
Deprecated.
|
boolean |
hasNumberFormat()
Deprecated.
Use this to check before retrieving a number format, as calling
getNumberFormat() may create a default one if none exists. |
boolean |
isSetLogBase()
Deprecated.
|
boolean |
isSetMaximum()
Deprecated.
|
boolean |
isSetMinimum()
Deprecated.
|
boolean |
isVisible()
Deprecated.
|
void |
setCrosses(AxisCrosses crosses)
Deprecated.
|
void |
setLogBase(double logBase)
Deprecated.
|
void |
setMajorTickMark(AxisTickMark tickMark)
Deprecated.
|
void |
setMaximum(double max)
Deprecated.
|
void |
setMinimum(double min)
Deprecated.
|
void |
setMinorTickMark(AxisTickMark tickMark)
Deprecated.
|
void |
setNumberFormat(java.lang.String format)
Deprecated.
|
void |
setOrientation(AxisOrientation orientation)
Deprecated.
|
void |
setPosition(AxisPosition position)
Deprecated.
|
void |
setVisible(boolean value)
Deprecated.
|
long getId()
AxisPosition getPosition()
void setPosition(AxisPosition position)
position
- new axis positionjava.lang.String getNumberFormat()
void setNumberFormat(java.lang.String format)
format
- axis number formatboolean isSetLogBase()
void setLogBase(double logBase)
logBase
- a number between 2 and 1000 (inclusive)java.lang.IllegalArgumentException
- if log base not within allowed rangedouble getLogBase()
boolean isSetMinimum()
double getMinimum()
void setMinimum(double min)
min
- axis minimumboolean isSetMaximum()
double getMaximum()
void setMaximum(double max)
max
- axis maximumAxisOrientation getOrientation()
void setOrientation(AxisOrientation orientation)
orientation
- axis orientationvoid setCrosses(AxisCrosses crosses)
crosses
- axis cross typeAxisCrosses getCrosses()
void crossAxis(ChartAxis axis)
axis
- that this axis should crossboolean isVisible()
void setVisible(boolean value)
value
- visibility of the axis.AxisTickMark getMajorTickMark()
void setMajorTickMark(AxisTickMark tickMark)
tickMark
- major tick mark type.AxisTickMark getMinorTickMark()
void setMinorTickMark(AxisTickMark tickMark)
tickMark
- minor tick mark type.boolean hasNumberFormat()
getNumberFormat()
may create a default one if none exists.Copyright 2020 The Apache Software Foundation or its licensors, as applicable.