< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/chart/ValueAxis.java

Print this page
rev 10359 : 8176236: Some field descriptions are truncated after the JDK-8163501

*** 70,80 **** private List<T> minorTickMarkValues = null; private boolean minorTickMarksDirty = true; // -------------- PRIVATE PROPERTIES ------------------------------------------------------------------------------- /** ! * The current value for the lowerBound of this axis, i.e. min value. * This may be the same as lowerBound or different. It is used by NumberAxis to animate the * lowerBound from the old value to the new value. */ protected final DoubleProperty currentLowerBound = new SimpleDoubleProperty(this, "currentLowerBound"); --- 70,80 ---- private List<T> minorTickMarkValues = null; private boolean minorTickMarksDirty = true; // -------------- PRIVATE PROPERTIES ------------------------------------------------------------------------------- /** ! * The current value for the lowerBound of this axis, ie min value. * This may be the same as lowerBound or different. It is used by NumberAxis to animate the * lowerBound from the old value to the new value. */ protected final DoubleProperty currentLowerBound = new SimpleDoubleProperty(this, "currentLowerBound");
*** 118,128 **** public final double getScale() { return scale.get(); } protected final void setScale(double scale) { this.scale.set(scale); } public final ReadOnlyDoubleProperty scaleProperty() { return scale.getReadOnlyProperty(); } ReadOnlyDoubleWrapper scalePropertyImpl() { return scale; } ! /** The value for the upper bound of this axis, i.e. max value. This is automatically set if auto ranging is on. */ private DoubleProperty upperBound = new DoublePropertyBase(100) { @Override protected void invalidated() { if(!isAutoRanging()) { invalidateRange(); requestAxisLayout(); --- 118,128 ---- public final double getScale() { return scale.get(); } protected final void setScale(double scale) { this.scale.set(scale); } public final ReadOnlyDoubleProperty scaleProperty() { return scale.getReadOnlyProperty(); } ReadOnlyDoubleWrapper scalePropertyImpl() { return scale; } ! /** The value for the upper bound of this axis, ie max value. This is automatically set if auto ranging is on. */ private DoubleProperty upperBound = new DoublePropertyBase(100) { @Override protected void invalidated() { if(!isAutoRanging()) { invalidateRange(); requestAxisLayout();
*** 141,151 **** }; public final double getUpperBound() { return upperBound.get(); } public final void setUpperBound(double value) { upperBound.set(value); } public final DoubleProperty upperBoundProperty() { return upperBound; } ! /** The value for the lower bound of this axis, i.e. min value. This is automatically set if auto ranging is on. */ private DoubleProperty lowerBound = new DoublePropertyBase(0) { @Override protected void invalidated() { if(!isAutoRanging()) { invalidateRange(); requestAxisLayout(); --- 141,151 ---- }; public final double getUpperBound() { return upperBound.get(); } public final void setUpperBound(double value) { upperBound.set(value); } public final DoubleProperty upperBoundProperty() { return upperBound; } ! /** The value for the lower bound of this axis, ie min value. This is automatically set if auto ranging is on. */ private DoubleProperty lowerBound = new DoublePropertyBase(0) { @Override protected void invalidated() { if(!isAutoRanging()) { invalidateRange(); requestAxisLayout();
< prev index next >