116117118119120121122
} else { setRange(this.displayStart, this.fixedRange.getUpperBound() + (this.displayEnd - this.fixedRange.getLowerBound())); } notifyListeners(new AxisChangeEvent(this)); }
1155115611571158115911601161
* Sends an {@link AxisChangeEvent} to all registered listeners. * * @since 1.0.12 */ protected void fireChangeEvent() { notifyListeners(new AxisChangeEvent(this)); }
114115116117118119120
public void setSubLabelFont(Font font) { if (font == null) { throw new IllegalArgumentException("Null 'font' argument."); } this.sublabelFont = font; notifyListeners(new AxisChangeEvent(this)); }
141142143144145146147
public void setSubLabelPaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.sublabelPaint = paint; notifyListeners(new AxisChangeEvent(this)); }
196197198199200201202203
* @see #isGridBandsVisible() */ public void setGridBandsVisible(boolean flag) { if (this.gridBandsVisible != flag) { this.gridBandsVisible = flag; notifyListeners(new AxisChangeEvent(this)); } }
225226227228229230231
public void setGridBandPaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.gridBandPaint = paint; notifyListeners(new AxisChangeEvent(this)); }
258259260261262263264
public void setGridBandAlternatePaint(Paint paint) { if (paint == null) { throw new IllegalArgumentException("Null 'paint' argument."); } this.gridBandAlternatePaint = paint; notifyListeners(new AxisChangeEvent(this)); }
146147148149150151152
if (base <= 1.0) { throw new IllegalArgumentException("Requires 'base' > 1.0."); } this.base = base; this.baseLog = Math.log(base); notifyListeners(new AxisChangeEvent(this)); }
173174175176177178179
public void setSmallestValue(double value) { if (value <= 0.0) { throw new IllegalArgumentException("Requires 'value' > 0.0."); } this.smallestValue = value; notifyListeners(new AxisChangeEvent(this)); }
227228229230231232233234235
this.tickUnit = unit; if (turnOffAutoSelect) { setAutoTickUnitSelection(false, false); } if (notify) { notifyListeners(new AxisChangeEvent(this)); } }