17681769177017711772177317741775
* a flag that controls whether or not listeners are notified. */ public void setItemLabelsVisible(final Boolean visible, final boolean notify) { this.itemLabelsVisible = visible; if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
17991800180118021803180418051806
*/ public void setNegativeItemLabelPosition(final ItemLabelPosition position, final boolean notify) { this.negativeItemLabelPosition = position; if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
18261827182818291830183118321833
*/ public void setOutlinePaint(final Color paint, final boolean notify) { this.getDrawingAssets().setColor(Plot.COLOR_SERIES_OUTLINE_OVERRIDE, paint); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
18541855185618571858185918601861
*/ public void setOutlineStroke(final Stroke stroke, final boolean notify) { this.getDrawingAssets().setStroke(Plot.STROKE_SERIES_OUTLINE_OVERRIDE, stroke); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
18821883188418851886188718881889
* notify listeners? */ public void setPaint(final Color paint, final boolean notify) { this.getDrawingAssets().setColor(Plot.COLOR_SERIES_OVERRIDE, paint); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
19121913191419151916191719181919
*/ public void setPositiveItemLabelPosition(final ItemLabelPosition position, final boolean notify) { this.positiveItemLabelPosition = position; if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
19591960196119621963196419651966
*/ public void setSeriesCreateEntities(final int series, final Boolean create, final boolean notify) { this.createEntitiesList.set(series, create); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
19911992199319941995199619971998
*/ public void setSeriesFillPaint(final int series, final Color paint, final boolean notify) { this.fillPaintMap.put(new Integer(series), paint); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
20232024202520262027202820292030
*/ public void setSeriesItemLabelFont(final int series, final Font font, final boolean notify) { this.itemLabelFontList.set(series, font); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }
20552056205720582059206020612062
*/ public void setSeriesItemLabelPaint(final int series, final Color paint, final boolean notify) { this.itemLabelPaintMap.put(new Integer(series), paint); if (notify) { this.notifyListeners(new RendererChangeEvent(this)); } }