Class AxisPosition

  • All Implemented Interfaces:
    java.io.Serializable

    public class AxisPosition
    extends java.lang.Object
    implements java.io.Serializable
    The AxisPosition class contains axis placements that can be used by the BaseAxis.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()
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • 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.
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object