2031203220332034203520362037
* the location (<code>null</code> permitted). */ public void setDomainAxisLocation(final int index, final AxisLocation location) { this.domainAxisLocations.set(index, location); this.notifyListeners(new PlotChangeEvent(this)); }
20472048204920502051205220532054
* @see #isDomainCrosshairLockedOnData() */ public void setDomainCrosshairLockedOnData(final boolean flag) { if (this.domainCrosshairLockedOnData != flag) { this.domainCrosshairLockedOnData = flag; this.notifyListeners(new PlotChangeEvent(this)); } }
20792080208120822083208420852086
* @see #getDomainCrosshairValue() */ public void setDomainCrosshairValue(final double value, final boolean notify) { this.domainCrosshairValue = value; if (this.isDomainCrosshairVisible() && notify) { this.notifyListeners(new PlotChangeEvent(this)); } }
20962097209820992100210121022103
* @see #isDomainCrosshairVisible() */ public void setDomainCrosshairVisible(final boolean flag) { if (this.domainCrosshairVisible != flag) { this.domainCrosshairVisible = flag; this.notifyListeners(new PlotChangeEvent(this)); } }
21552156215721582159216021612162
* the new value of the flag. */ public void setDomainGridlinesVisible(final boolean visible) { if (this.domainGridlinesVisible != visible) { this.domainGridlinesVisible = visible; this.notifyListeners(new PlotChangeEvent(this)); } }
2179218021812182218321842185
* @param items * the legend items (<code>null</code> permitted). */ public void setFixedLegendItems(final LegendItemCollection items) { this.fixedLegendItems = items; this.notifyListeners(new PlotChangeEvent(this)); }
22042205220622072208220922102211
if (orientation == null) { throw new IllegalArgumentException("Null 'orientation' argument."); } if (orientation != this.orientation) { this.orientation = orientation; this.notifyListeners(new PlotChangeEvent(this)); } }
2220222122222223222422252226
public void setQuadrantOrigin(final Point origin) { if (origin == null) { throw new IllegalArgumentException("Null 'origin' argument."); } this.quadrantOrigin = origin; this.notifyListeners(new PlotChangeEvent(this)); }
2234223522362237223822392240
*/ public void setRangeAxes(final ValueAxis[] axes) { for (int i = 0; i < axes.length; i++) { this.setRangeAxis(i, axes[i], false); } this.notifyListeners(new PlotChangeEvent(this)); }
22812282228322842285228622872288
if (axis != null) { axis.configure(); axis.addChangeListener(this); } if (notify) { this.notifyListeners(new PlotChangeEvent(this)); } }