927928929930931932933934935
final boolean notify) { if (this.autoTickUnitSelection != flag) { this.autoTickUnitSelection = flag; if (notify) { this.notifyListeners(new AxisChangeEvent(this)); } } }
945946947948949950951
public void setFixedAutoRange(final double length) { this.fixedAutoRange = length; if (this.isAutoRange()) { this.autoAdjustRange(); } this.notifyListeners(new AxisChangeEvent(this)); }
961962963964965966967968969
*/ public void setInverted(final boolean flag) { if (this.inverted != flag) { this.inverted = flag; this.notifyListeners(new AxisChangeEvent(this)); } }
999100010011002100310041005
public void setLowerMargin(final double margin) { this.lowerMargin = margin; if (this.isAutoRange()) { this.autoAdjustRange(); } this.notifyListeners(new AxisChangeEvent(this)); }
1014101510161017101810191020
* * @see #setNegativeArrowVisible(boolean) */ public void setNegativeArrowVisible(final boolean visible) { this.negativeArrowVisible = visible; this.notifyListeners(new AxisChangeEvent(this)); }
1029103010311032103310341035
* * @see #isPositiveArrowVisible() */ public void setPositiveArrowVisible(final boolean visible) { this.positiveArrowVisible = visible; this.notifyListeners(new AxisChangeEvent(this)); }
10881089109010911092109310941095
if (turnOffAutoRange) { this.autoRange = false; } this.range = range; if (notify) { this.notifyListeners(new AxisChangeEvent(this)); } }
1170117111721173117411751176
* * @see #getStandardTickUnits() */ public void setStandardTickUnits(final TickUnitSource source) { this.standardTickUnits = source; this.notifyListeners(new AxisChangeEvent(this)); }
1208120912101211121212131214
public void setUpperMargin(final double margin) { this.upperMargin = margin; if (this.isAutoRange()) { this.autoAdjustRange(); } this.notifyListeners(new AxisChangeEvent(this)); }
12241225122612271228122912301231
* @see #isVerticalTickLabels() */ public void setVerticalTickLabels(final boolean flag) { if (this.verticalTickLabels != flag) { this.verticalTickLabels = flag; this.notifyListeners(new AxisChangeEvent(this)); } }