269270271272273274275276277
} // make the change (if necessary)... if (this.radius != percent) { this.radius = percent; notifyListeners(new PlotChangeEvent(this)); } }
300301302303304305306307308
} // make the change... if (!this.axisLabelFont.equals(font)) { this.axisLabelFont = font; notifyListeners(new PlotChangeEvent(this)); } }
331332333334335336337338339
} // make the change... if (!this.axisLabelPaint.equals(paint)) { this.axisLabelPaint = paint; notifyListeners(new PlotChangeEvent(this)); } }
362363364365366367368369370
} // make the change... if (!this.plotLinePaint.equals(paint)) { this.plotLinePaint = paint; notifyListeners(new PlotChangeEvent(this)); } }
390391392393394395396397398
} // make the change... if (this.axisLabelGap!=percent) { this.axisLabelGap = percent; notifyListeners(new PlotChangeEvent(this)); } }
414415416417418419420421
* @param flag the new show axis labels flag. */ public void setShowAxisLabels(boolean flag) { if (this.showAxisLabels != flag) { this.showAxisLabels = flag; notifyListeners(new PlotChangeEvent(this)); } }
186187188189190191192
if (discDistributor == null) throw new IllegalArgumentException("Disc distributor cannot be null"); this.discDistributor = discDistributor; this.discDistributor.setDataset(this.dataset); notifyListeners(new PlotChangeEvent(this)); }
204205206207208209210
public void setDiscRenderer(DiscItemRenderer discRenderer) { if (discRenderer == null) throw new IllegalArgumentException("Disc renderer cannot be null"); this.discRenderer = discRenderer; notifyListeners(new PlotChangeEvent(this)); }
219220221222223224225
/** * @param labelGenerator The labelGenerator to set. */ public void setLabelGenerator(PieSectionLabelGenerator labelGenerator) { this.labelGenerator = labelGenerator; notifyListeners(new PlotChangeEvent(this)); }
234235236237238239240
/** * @param labelFont The labelFont to set. */ public void setLabelFont(Font labelFont) { this.labelFont = labelFont; notifyListeners(new PlotChangeEvent(this)); }