java.lang.Object
javafx.scene.chart.Axis.TickMark<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 Summary
Properties Type Property Description StringExpression
label
The display text for tick markDoubleExpression
position
The display position along the axis from axis origin in display unitsObjectExpression<T>
value
The value for this tick mark in data units -
Constructor Summary
Constructors Constructor Description TickMark()
Creates and initializes an instance of TickMark. -
Method Summary
Modifier and Type Method Description String
getLabel()
Gets the value of the property label.double
getPosition()
Gets the value of the property position.T
getValue()
Gets the value of the property value.boolean
isTextVisible()
Indicates whether this tick mark label text is displayed or not.StringExpression
labelProperty()
The display text for tick markDoubleExpression
positionProperty()
The display position along the axis from axis origin in display unitsvoid
setLabel(String value)
Sets the value of the property label.void
setPosition(double value)
Sets the value of the property position.void
setTextVisible(boolean value)
Specifies whether this tick mark label text is displayed or not.void
setValue(T v)
Sets the value of the property value.String
toString()
Returns a string representation of thisTickMark
object.ObjectExpression<T>
valueProperty()
The value for this tick mark in data units
-
Property Details
-
label
The display text for tick mark- See Also:
getLabel()
,setLabel(String)
-
value
The value for this tick mark in data units- See Also:
getValue()
,setValue(T)
-
position
The display position along the axis from axis origin in display units- See Also:
getPosition()
,setPosition(double)
-
-
Constructor Details
-
TickMark
public TickMark()Creates and initializes an instance of TickMark.
-
-
Method Details
-
getLabel
Gets the value of the property label.- Property description:
- The display text for tick mark
-
setLabel
Sets the value of the property label.- Property description:
- The display text for tick mark
-
labelProperty
The display text for tick mark- See Also:
getLabel()
,setLabel(String)
-
getValue
Gets the value of the property value.- Property description:
- The value for this tick mark in data units
-
setValue
Sets the value of the property value.- Property description:
- The value for this tick mark in data units
-
valueProperty
The value for this tick mark in data units- See Also:
getValue()
,setValue(T)
-
getPosition
public final double getPosition()Gets the value of the property position.- Property description:
- The display position along the axis from axis origin in display units
-
setPosition
public final void setPosition(double value)Sets the value of the property position.- Property description:
- The display position along the axis from axis origin in display units
-
positionProperty
The display position along the axis from axis origin in display units- See Also:
getPosition()
,setPosition(double)
-
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
Returns a string representation of thisTickMark
object.
-