Package com.inet.report.chart.axis
Class AxisPosition
- java.lang.Object
-
- com.inet.report.chart.axis.AxisPosition
-
- All Implemented Interfaces:
java.io.Serializable
public class AxisPosition extends java.lang.Object implements java.io.Serializable
TheAxisPosition
class contains axis placements that can be used by theBaseAxis.setAxisPosition(AxisPosition)
.- Since:
- 8.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static AxisPosition
NONE
Showing of this axis is disabled.static AxisPosition
ON_MAX
The axis position on the maximum of the other axis.static AxisPosition
ON_MIN
The axis position is on the minimum of the other axis.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
int
hashCode()
java.lang.String
toString()
-
-
-
Field Detail
-
NONE
public static final AxisPosition NONE
Showing of this axis is disabled.
-
ON_MIN
public static final AxisPosition ON_MIN
The axis position is on the minimum of the other axis. For the y-axis, this would mean an axis position on the left side of chart.
-
ON_MAX
public static final AxisPosition ON_MAX
The axis position on the maximum of the other axis. For the y-axis, this would mean an axis position on the right side of the chart.
-
-