Basics
Guides
API Reference
Basics
Guides
API Reference
[17:7] extends: Axis
The ValueAxis class wraps javafx.scene.chart.ValueAxis, the abstract base for numeric axes (NumberAxis). It extends Axis and adds the numeric range bounds, the scale, and the minor tick and tick-label-formatter settings that numeric axes share. This wrapper is not constructed directly. NumberAxis extends it, mirroring the JavaFX inheritance model.
ValueAxis ()
Base constructor. ValueAxis is abstract and is never instantiated on its own.
setLowerBound (double Lower)
Sets the lower bound of the axis range.
Lower is a double with the lower bound.this object for chaininggetLowerBound ()
Returns the lower bound of the axis range.
A double with the lower bound.lowerBoundProperty ()
Returns the DoubleProperty backing the lower bound.
An AJO wrapping javafx.beans.property.DoubleProperty.setUpperBound (double Upper)
Sets the upper bound of the axis range.
Upper is a double with the upper bound.this object for chaininggetUpperBound ()
Returns the upper bound of the axis range.
A double with the upper bound.upperBoundProperty ()
Returns the DoubleProperty backing the upper bound.
An AJO wrapping javafx.beans.property.DoubleProperty.setMinorTickCount (int Count)
Sets the number of minor tick divisions between major ticks.
Count is an int with the minor tick count.this object for chaininggetMinorTickCount ()
Returns the number of minor tick divisions between major ticks.
An int with the minor tick count.minorTickCountProperty ()
Returns the IntegerProperty backing the minor tick count.
An AJO wrapping javafx.beans.property.IntegerProperty.setMinorTickLength (double Length)
Sets the length, in pixels, of the minor tick marks.
Length is a double with the minor tick length.this object for chaininggetMinorTickLength ()
Returns the length, in pixels, of the minor tick marks.
A double with the minor tick length.minorTickLengthProperty ()
Returns the DoubleProperty backing the minor tick length.
An AJO wrapping javafx.beans.property.DoubleProperty.setMinorTickVisible (bool Visible)
Sets whether the minor tick marks are visible.
Visible is a bool; true shows the minor tick marks.this object for chainingisMinorTickVisible ()
Returns whether the minor tick marks are visible.
A bool that is true when the minor tick marks are shown.minorTickVisibleProperty ()
Returns the BooleanProperty backing the minor tick visibility.
An AJO wrapping javafx.beans.property.BooleanProperty.getScale ()
Returns the scale factor, in pixels per data unit, of the axis.
A double with the scale.scaleProperty ()
Returns the ReadOnlyDoubleProperty backing the scale.
An AJO wrapping ReadOnlyDoubleProperty.setTickLabelFormatter (Formatter)
Sets the formatter used to convert tick values into label strings.
Formatter is a javafx.util.StringConverter, passed as a wrapper or a raw AJO.this object for chaininggetTickLabelFormatter ()
Returns the tick label formatter.
An AJO wrapping javafx.util.StringConverter, or null when none is set.tickLabelFormatterProperty ()
Returns the ObjectProperty backing the tick label formatter.
An AJO wrapping ObjectProperty
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.