Class Axis.TickMark<T>

java.lang.Object
javafx.scene.chart.Axis.TickMark<T>
Type Parameters:
T - the axis data type
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 Link icon

  • Constructor Details Link icon

    • TickMark Link icon

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

    • getLabel Link icon

      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 Link icon

      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 Link icon

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

      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 Link icon

      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 Link icon

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

      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 Link icon

      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 Link icon

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

      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 Link icon

      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 Link icon

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