741742743744745746747
* * @see #getTickMarkInsideLength() */ public void setTickMarkOutsideLength(final float length) { this.tickMarkOutsideLength = length; this.notifyListeners(new AxisChangeEvent(this)); }
756757758759760761762763
* @see #isTickMarksVisible() */ public void setTickMarksVisible(final boolean flag) { if (flag != this.tickMarksVisible) { this.tickMarksVisible = flag; this.notifyListeners(new AxisChangeEvent(this)); } }
772773774775776777778779
* @see #isVisible() */ public void setVisible(final boolean flag) { if (flag != this.visible) { this.visible = flag; this.notifyListeners(new AxisChangeEvent(this)); } }
9939949959969979989991000
if (this.autoRangeIncludesZero != flag) { this.autoRangeIncludesZero = flag; if (this.isAutoRange()) { this.autoAdjustRange(); } this.notifyListeners(new AxisChangeEvent(this)); } }
10101011101210131014101510161017
if (this.autoRangeStickyZero != flag) { this.autoRangeStickyZero = flag; if (this.isAutoRange()) { this.autoAdjustRange(); } this.notifyListeners(new AxisChangeEvent(this)); } }
1023102410251026102710281029
* @param formatter * the number formatter (<code>null</code> permitted). */ public void setNumberFormatOverride(final NumberFormat formatter) { this.numberFormatOverride = formatter; this.notifyListeners(new AxisChangeEvent(this)); }
1037103810391040104110421043
public void setRangeType(final RangeType rangeType) { if (rangeType == null) { throw new IllegalArgumentException("Null 'rangeType' argument."); } this.rangeType = rangeType; this.notifyListeners(new AxisChangeEvent(this)); }
108210831084108510861087108810891090
this.tickUnit = unit; if (turnOffAutoSelect) { this.setAutoTickUnitSelection(false, false); } if (notify) { this.notifyListeners(new AxisChangeEvent(this)); } }
837838839840841842843844845
this.autoRange = auto; if (this.autoRange) { this.autoAdjustRange(); } if (notify) { this.notifyListeners(new AxisChangeEvent(this)); } } }
878879880881882883884885886887
this.autoRangeMinimumSize = size; if (this.autoRange) { this.autoAdjustRange(); } if (notify) { this.notifyListeners(new AxisChangeEvent(this)); } } }