2309231023112312231323142315
this.rangeAxes.set(0, axis); if (axis != null) { axis.configure(); axis.addChangeListener(this); } this.notifyListeners(new PlotChangeEvent(this)); }
234023412342234323442345234623472348
if (location == null) { throw new IllegalArgumentException("Null 'location' argument."); } this.rangeAxisLocations.set(0, location); if (notify) { this.notifyListeners(new PlotChangeEvent(this)); } }
2361236223632364236523662367
if (index == this.rangeAxisLocations.size()) { this.rangeAxisLocations.add(location); } else { this.rangeAxisLocations.set(index, location); } this.notifyListeners(new PlotChangeEvent(this)); }
23772378237923802381238223832384
* @see #isRangeCrosshairLockedOnData() */ public void setRangeCrosshairLockedOnData(final boolean flag) { if (this.rangeCrosshairLockedOnData != flag) { this.rangeCrosshairLockedOnData = flag; this.notifyListeners(new PlotChangeEvent(this)); } }
24102411241224132414241524162417
* @see #getRangeCrosshairValue() */ public void setRangeCrosshairValue(final double value, final boolean notify) { this.rangeCrosshairValue = value; if (this.isRangeCrosshairVisible() && notify) { this.notifyListeners(new PlotChangeEvent(this)); } }
24272428242924302431243224332434
* @see #isRangeCrosshairVisible() */ public void setRangeCrosshairVisible(final boolean flag) { if (this.rangeCrosshairVisible != flag) { this.rangeCrosshairVisible = flag; this.notifyListeners(new PlotChangeEvent(this)); } }
24782479248024812482248324842485
* the new value of the flag. */ public void setRangeGridlinesVisible(final boolean visible) { if (this.rangeGridlinesVisible != visible) { this.rangeGridlinesVisible = visible; this.notifyListeners(new PlotChangeEvent(this)); } }
2492249324942495249624972498
* @param visible * the flag. */ public void setRangeZeroBaselineVisible(final boolean visible) { this.rangeZeroBaselineVisible = visible; this.notifyListeners(new PlotChangeEvent(this)); }
25372538253925402541254225432544
renderer.addChangeListener(this); } this.configureDomainAxes(); this.configureRangeAxes(); if (notify) { this.notifyListeners(new PlotChangeEvent(this)); } }
2564256525662567256825692570
*/ public void setRenderers(final XYItemRenderer[] renderers) { for (int i = 0; i < renderers.length; i++) { this.setRenderer(i, renderers[i], false); } this.notifyListeners(new PlotChangeEvent(this)); }