445446447448449450451
* @see #getUpArrow() */ public void setUpArrow(Shape arrow) { ParamChecks.nullNotPermitted(arrow, "arrow"); this.upArrow = arrow; notifyListeners(new AxisChangeEvent(this)); }
472473474475476477478
* @see #getDownArrow() */ public void setDownArrow(Shape arrow) { ParamChecks.nullNotPermitted(arrow, "arrow"); this.downArrow = arrow; notifyListeners(new AxisChangeEvent(this)); }
499500501502503504505
* @see #getLeftArrow() */ public void setLeftArrow(Shape arrow) { ParamChecks.nullNotPermitted(arrow, "arrow"); this.leftArrow = arrow; notifyListeners(new AxisChangeEvent(this)); }
526527528529530531532
* @see #getRightArrow() */ public void setRightArrow(Shape arrow) { ParamChecks.nullNotPermitted(arrow, "arrow"); this.rightArrow = arrow; notifyListeners(new AxisChangeEvent(this)); }
941942943944945946947948949
*/ public void setInverted(boolean flag) { if (this.inverted != flag) { this.inverted = flag; notifyListeners(new AxisChangeEvent(this)); } }
987988989990991992993994995
this.autoRange = auto; if (this.autoRange) { autoAdjustRange(); } if (notify) { notifyListeners(new AxisChangeEvent(this)); } } }
1037103810391040104110421043104410451046
this.autoRangeMinimumSize = size; if (this.autoRange) { autoAdjustRange(); } if (notify) { notifyListeners(new AxisChangeEvent(this)); } } }
1069107010711072107310741075
* @since 1.0.5 */ public void setDefaultAutoRange(Range range) { ParamChecks.nullNotPermitted(range, "range"); this.defaultAutoRange = range; notifyListeners(new AxisChangeEvent(this)); }
1102110311041105110611071108
public void setLowerMargin(double margin) { this.lowerMargin = margin; if (isAutoRange()) { autoAdjustRange(); } notifyListeners(new AxisChangeEvent(this)); }
1135113611371138113911401141
public void setUpperMargin(double margin) { this.upperMargin = margin; if (isAutoRange()) { autoAdjustRange(); } notifyListeners(new AxisChangeEvent(this)); }