Interface ChartAxis
- All Known Subinterfaces:
ValueAxis
- All Known Implementing Classes:
XSSFCategoryAxis
,XSSFChartAxis
,XSSFDateAxis
,XSSFValueAxis
Deprecated.
use XDDFChartAxis instead
High level representation of chart axis.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.Declare this axis cross another axis.Deprecated.long
getId()
Deprecated.double
Deprecated.Deprecated.double
Deprecated.double
Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.boolean
Deprecated.Use this to check before retrieving a number format, as callinggetNumberFormat()
may create a default one if none exists.boolean
Deprecated.boolean
Deprecated.boolean
Deprecated.boolean
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
(String format) Deprecated.void
setOrientation
(AxisOrientation orientation) Deprecated.void
setPosition
(AxisPosition position) Deprecated.void
setVisible
(boolean value) Deprecated.
-
Method Details
-
getId
long getId()Deprecated.- Returns:
- axis id
-
getPosition
AxisPosition getPosition()Deprecated.- Returns:
- axis position
-
setPosition
Deprecated.- Parameters:
position
- new axis position
-
getNumberFormat
String getNumberFormat()Deprecated.- Returns:
- axis number format
-
setNumberFormat
Deprecated.- Parameters:
format
- axis number format
-
isSetLogBase
boolean isSetLogBase()Deprecated.- Returns:
- true if log base is defined, false otherwise
-
setLogBase
void setLogBase(double logBase) Deprecated.- Parameters:
logBase
- a number between 2 and 1000 (inclusive)- Throws:
IllegalArgumentException
- if log base not within allowed range
-
getLogBase
double getLogBase()Deprecated.- Returns:
- axis log base or 0.0 if not set
-
isSetMinimum
boolean isSetMinimum()Deprecated.- Returns:
- true if minimum value is defined, false otherwise
-
getMinimum
double getMinimum()Deprecated.- Returns:
- axis minimum or 0.0 if not set
-
setMinimum
void setMinimum(double min) Deprecated.- Parameters:
min
- axis minimum
-
isSetMaximum
boolean isSetMaximum()Deprecated.- Returns:
- true if maximum value is defined, false otherwise
-
getMaximum
double getMaximum()Deprecated.- Returns:
- axis maximum or 0.0 if not set
-
setMaximum
void setMaximum(double max) Deprecated.- Parameters:
max
- axis maximum
-
getOrientation
AxisOrientation getOrientation()Deprecated.- Returns:
- axis orientation
-
setOrientation
Deprecated.- Parameters:
orientation
- axis orientation
-
setCrosses
Deprecated.- Parameters:
crosses
- axis cross type
-
getCrosses
AxisCrosses getCrosses()Deprecated.- Returns:
- axis cross type
-
crossAxis
Deprecated.Declare this axis cross another axis.- Parameters:
axis
- that this axis should cross
-
isVisible
boolean isVisible()Deprecated.- Returns:
- visibility of the axis.
-
setVisible
void setVisible(boolean value) Deprecated.- Parameters:
value
- visibility of the axis.
-
getMajorTickMark
AxisTickMark getMajorTickMark()Deprecated.- Returns:
- major tick mark.
-
setMajorTickMark
Deprecated.- Parameters:
tickMark
- major tick mark type.
-
getMinorTickMark
AxisTickMark getMinorTickMark()Deprecated.- Returns:
- minor tick mark.
-
setMinorTickMark
Deprecated.- Parameters:
tickMark
- minor tick mark type.
-
hasNumberFormat
boolean hasNumberFormat()Deprecated.Use this to check before retrieving a number format, as callinggetNumberFormat()
may create a default one if none exists.- Returns:
- true if a number format element is defined, false if not
-