Class Axis.TickMark<T>

java.lang.Object
javafx.scene.chart.Axis.TickMark<T>
Enclosing class:
Axis<T>

public static final class Axis.TickMark<T> extends Object
TickMark represents the label text, its associated properties for each tick along the Axis.
Since:
JavaFX 2.0
  • Property Details

  • Constructor Details

    • TickMark

      public TickMark()
      Creates and initializes an instance of TickMark.
  • Method Details

    • getLabel

      public final String getLabel()
      Gets the value of the label property.
      Property description:
      The display text for tick mark
      Returns:
      the value of the label property
      See Also:
    • setLabel

      public final void setLabel(String value)
      Sets the value of the label property.
      Property description:
      The display text for tick mark
      Parameters:
      value - the value for the label property
      See Also:
    • labelProperty

      public final StringExpression labelProperty()
      The display text for tick mark
      Returns:
      the label property
      See Also:
    • getValue

      public final T getValue()
      Gets the value of the value property.
      Property description:
      The value for this tick mark in data units
      Returns:
      the value of the value property
      See Also:
    • setValue

      public final void setValue(T v)
      Sets the value of the value property.
      Property description:
      The value for this tick mark in data units
      Parameters:
      v - the value for the value property
      See Also:
    • valueProperty

      public final ObjectExpression<T> valueProperty()
      The value for this tick mark in data units
      Returns:
      the value property
      See Also:
    • getPosition

      public final double getPosition()
      Gets the value of the position property.
      Property description:
      The display position along the axis from axis origin in display units
      Returns:
      the value of the position property
      See Also:
    • setPosition

      public final void setPosition(double value)
      Sets the value of the position property.
      Property description:
      The display position along the axis from axis origin in display units
      Parameters:
      value - the value for the position property
      See Also:
    • positionProperty

      public final DoubleExpression positionProperty()
      The display position along the axis from axis origin in display units
      Returns:
      the position property
      See Also:
    • isTextVisible

      public final boolean isTextVisible()
      Indicates whether this tick mark label text is displayed or not.
      Returns:
      true if tick mark label text is visible and false otherwise
    • setTextVisible

      public final void setTextVisible(boolean value)
      Specifies whether this tick mark label text is displayed or not.
      Parameters:
      value - true if tick mark label text is visible and false otherwise
    • toString

      public String toString()
      Returns a string representation of this TickMark object.
      Overrides:
      toString in class Object
      Returns:
      a string representation of this TickMark object.