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)); }
249250251252253254255
/** * @param labelPaint The labelPaint to set. */ public void setLabelPaint(Paint labelPaint) { this.labelPaint = labelPaint; notifyListeners(new PlotChangeEvent(this)); }
264265266267268269270
/** * @param toolTipGenerator The toolTipGenerator to set. */ public void setToolTipGenerator(PieToolTipGenerator toolTipGenerator) { this.toolTipGenerator = toolTipGenerator; notifyListeners(new PlotChangeEvent(this)); }
279280281282283284285
/** * @param urlGenerator The urlGenerator to set. */ public void setUrlGenerator(PieURLGenerator urlGenerator) { this.urlGenerator = urlGenerator; notifyListeners(new PlotChangeEvent(this)); }